open class CliktError : RuntimeException
An exception during command line processing that should be shown to the user.
If calling CliktCommand.main, these exceptions will be caught and the appropriate info will be printed.
CliktError(message: String? = null, cause: Exception? = null)
An exception during command line processing that should be shown to the user. |
class PrintHelpMessage : CliktError
An exception that indicates that the command's help should be printed. |
|
class PrintMessage : CliktError
An exception that indicates that a message should be printed. |
|
open class UsageError : CliktError
An internal exception that signals a usage error. |