improve parsing and flag Options

This commit is contained in:
2025-12-31 22:45:43 +01:00
parent 06a2d1bdce
commit 0dc064b8cf
15 changed files with 171 additions and 131 deletions

View File

@@ -0,0 +1,8 @@
package com.infendro.cli.exception.run
class MissingOptionValueException(
val option: String,
) : CliException() {
override val message: String
get() = """no value provided for option "$option""""
}