Mercurial > cgi-bin > hgweb.cgi > PassMan
comparison src/main/kotlin/name/blackcap/passman/MessagedException.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 | |
children |
comparison
equal
deleted
inserted
replaced
20:4391afcf6bd0 | 21:ea65ab890f66 |
---|---|
1 package name.blackcap.passman | |
2 | |
3 // Exception that always has a non-null message. | |
4 open class MessagedException(_message: String, _cause: Throwable? = null) : Exception(_message, _cause) { | |
5 override val message = _message | |
6 } |