adapt required/optional argument handling implement bounded/unbounded variable argument handling
7 lines
161 B
Kotlin
7 lines
161 B
Kotlin
package com.infendro.cli.exception.run
|
|
|
|
class UnexpectedArgument : RunException() {
|
|
override val message: String
|
|
get() = """unexpected argument"""
|
|
}
|