split error and exception

This commit is contained in:
2026-01-17 15:57:05 +01:00
parent dbd9d53050
commit a5b578a47d
29 changed files with 51 additions and 51 deletions

View File

@@ -0,0 +1,10 @@
package com.infendro.cli.exception
import com.infendro.cli.option.Option
class DuplicateOption(
val option: Option<*>,
) : BuildException() {
override val message: String
get() = """duplicate option "${option.name}""""
}