()
| 104 | } |
| 105 | |
| 106 | func (e tApplicationException) Error() string { |
| 107 | if e.message != "" { |
| 108 | return e.message |
| 109 | } |
| 110 | return defaultApplicationExceptionMessage[e.type_] |
| 111 | } |
| 112 | |
| 113 | func (e tApplicationException) Unwrap() error { |
| 114 | return e.err |