mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 23:27:25 +00:00
11 lines
158 B
Dart
11 lines
158 B
Dart
class APIException implements Exception {
|
|
final String message;
|
|
|
|
APIException(this.message);
|
|
|
|
@override
|
|
String toString() {
|
|
return message;
|
|
}
|
|
}
|