implement optional variable argument/option ranges, refactor exception handling

adapt required/optional argument handling
implement bounded/unbounded variable argument handling
This commit is contained in:
2026-01-06 22:47:21 +01:00
parent 8e491751f5
commit 4e9b358ef8
49 changed files with 315 additions and 231 deletions

View File

@@ -0,0 +1,6 @@
package com.infendro.cli.exception.run
class UnexpectedArgument : RunException() {
override val message: String
get() = """unexpected argument"""
}