diff src/main/kotlin/name/blackcap/passman/Subcommand.kt @ 21:ea65ab890f66

More work to support interactive feature.
author David Barts <n5jrn@me.com>
date Tue, 02 Jul 2024 11:27:39 -0700
parents a6cfdffcaa94
children
line wrap: on
line diff
--- a/src/main/kotlin/name/blackcap/passman/Subcommand.kt	Sun Jun 30 22:28:52 2024 -0700
+++ b/src/main/kotlin/name/blackcap/passman/Subcommand.kt	Tue Jul 02 11:27:39 2024 -0700
@@ -3,3 +3,10 @@
 abstract class Subcommand() {
     abstract fun run(args: Array<String>): Unit
 }
+
+// Replaces fatal errors that used to exit the process.
+class SubcommandException(message: String? = null, cause: Throwable? = null, status: Int = 1) : Exception(message, cause) {
+    private val _status = status
+    val status: Int
+        get() = _status
+}