Mercurial > cgi-bin > hgweb.cgi > PassMan
view src/main/kotlin/name/blackcap/passman/Subcommand.kt @ 27:3a3067ba673b
Add idle-time detection to interactive mode, clean up imports.
author | David Barts <n5jrn@me.com> |
---|---|
date | Sat, 27 Jul 2024 09:50:54 -0700 |
parents | ea65ab890f66 |
children |
line wrap: on
line source
package name.blackcap.passman 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 }