@@ -10,15 +10,15 @@ import kotlin.jvm.JvmOverloads
1010/* *
1111 * An exception during command line processing that should be shown to the user.
1212 *
13- * If calling [CliktCommand .main], these exceptions will be caught and the appropriate info will be printed.
13+ * If calling [CoreCliktCommand .main], these exceptions will be caught and the appropriate info will be printed.
1414 */
1515open class CliktError (
1616 message : String? = null ,
1717 cause : Exception ? = null ,
1818 /* *
1919 * The value to use as the exit code for the process.
2020 *
21- * If you use [CliktCommand .main], it will pass this value to `exitProcess` after printing
21+ * If you use [CoreCliktCommand .main], it will pass this value to `exitProcess` after printing
2222 * [message]. Defaults to 1.
2323 */
2424 val statusCode : Int = 1 ,
@@ -52,7 +52,7 @@ class PrintHelpMessage(
5252 /* *
5353 * The value to use as the exit code for the process.
5454 *
55- * If you use [CliktCommand .main], it will pass this value to `exitProcess` after printing
55+ * If you use [CoreCliktCommand .main], it will pass this value to `exitProcess` after printing
5656 * [message]. Defaults to 0.
5757 */
5858 statusCode : Int = 0 ,
@@ -69,7 +69,7 @@ open class PrintMessage(
6969 /* *
7070 * The value to use as the exit code for the process.
7171 *
72- * If you use [CliktCommand .main], it will pass this value to `exitProcess` after printing
72+ * If you use [CoreCliktCommand .main], it will pass this value to `exitProcess` after printing
7373 * [message]. Defaults to 0.
7474 */
7575 statusCode : Int = 0 ,
@@ -110,7 +110,7 @@ open class UsageError(
110110 /* *
111111 * The value to use as the exit code for the process.
112112 *
113- * If you use [CliktCommand .main], it will pass this value to `exitProcess` after printing
113+ * If you use [CoreCliktCommand .main], it will pass this value to `exitProcess` after printing
114114 * [message]. Defaults to 1.
115115 */
116116 statusCode : Int = 1 ,
0 commit comments