SimpleCloudNotifier/flutter/lib/api/api_exception.dart

14 lines
290 B
Dart

class APIException implements Exception {
final int httpStatus;
final int error;
final String errHighlight;
final String message;
APIException(this.httpStatus, this.error, this.errHighlight, this.message);
@override
String toString() {
return '[$error] $message';
}
}