view src/main/kotlin/name/blackcap/passman/MessagedException.kt @ 24:2188b2f13326

Make some minor tweaks to the help system.
author David Barts <n5jrn@me.com>
date Wed, 03 Jul 2024 17:14:22 -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
}