mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
11 lines
220 B
Dart
11 lines
220 B
Dart
// generic stack wallet exception which all other custom exceptions should
|
|
// extend from
|
|
|
|
class SWException with Exception {
|
|
SWException(this.message);
|
|
|
|
final String message;
|
|
|
|
@override
|
|
toString() => message;
|
|
}
|