annotate src/main/kotlin/name/blackcap/passman/MessagedException.kt @ 23:af86b8e0b88c

Clean up exit output.
author David Barts <n5jrn@me.com>
date Tue, 02 Jul 2024 18:18:29 -0700
parents ea65ab890f66
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21
ea65ab890f66 More work to support interactive feature.
David Barts <n5jrn@me.com>
parents:
diff changeset
1 package name.blackcap.passman
ea65ab890f66 More work to support interactive feature.
David Barts <n5jrn@me.com>
parents:
diff changeset
2
ea65ab890f66 More work to support interactive feature.
David Barts <n5jrn@me.com>
parents:
diff changeset
3 // Exception that always has a non-null message.
ea65ab890f66 More work to support interactive feature.
David Barts <n5jrn@me.com>
parents:
diff changeset
4 open class MessagedException(_message: String, _cause: Throwable? = null) : Exception(_message, _cause) {
ea65ab890f66 More work to support interactive feature.
David Barts <n5jrn@me.com>
parents:
diff changeset
5 override val message = _message
ea65ab890f66 More work to support interactive feature.
David Barts <n5jrn@me.com>
parents:
diff changeset
6 }