Files
cli.kt/src/commonMain/kotlin/com/infendro/cli/exception/run/UnexpectedArgument.kt
Infendro 4e9b358ef8 implement optional variable argument/option ranges, refactor exception handling
adapt required/optional argument handling
implement bounded/unbounded variable argument handling
2026-01-06 22:47:21 +01:00

7 lines
161 B
Kotlin

package com.infendro.cli.exception.run
class UnexpectedArgument : RunException() {
override val message: String
get() = """unexpected argument"""
}