Mercurial > cgi-bin > hgweb.cgi > PassMan
view src/main/kotlin/name/blackcap/passman/MessagedException.kt @ 25:131e39d96862
Fix erroneous help message in read subcommand.
author | David Barts <n5jrn@me.com> |
---|---|
date | Thu, 04 Jul 2024 09:49:36 -0700 |
parents | ea65ab890f66 |
children |
line wrap: on
line source
package name.blackcap.passman // Exception that always has a non-null message. open class MessagedException(_message: String, _cause: Throwable? = null) : Exception(_message, _cause) { override val message = _message }