Files
syncrow-web/lib/services/api/api_exception.dart

11 lines
158 B
Dart

class APIException implements Exception {
final String message;
APIException(this.message);
@override
String toString() {
return message;
}
}