Files
cli.kt/src/commonMain/kotlin/com/infendro/cli/exception/run/ArgumentCountException.kt
Infendro a0f2155b0c
All checks were successful
/ publish (push) Successful in 2m52s
initial commit
2025-07-12 20:15:32 +02:00

8 lines
148 B
Kotlin

package com.infendro.cli.exception.run
class ArgumentCountException(
val argument: String,
val min: Int,
val max: Int,
) : Exception()