9 lines
171 B
Dart
9 lines
171 B
Dart
class ServerErrorException implements Exception {
|
|
final String message;
|
|
|
|
ServerErrorException({required this.message});
|
|
|
|
@override
|
|
String toString() => message;
|
|
}
|