fbmobile/lib/core/error/rest_service_exception.dart

16 lines
398 B
Dart
Raw Normal View History

2021-02-02 14:33:23 +00:00
import '../enums/error_code.dart';
import 'service_exception.dart';
class RestServiceException extends ServiceException {
final int statusCode;
final dynamic responseBody;
RestServiceException(this.statusCode, {this.responseBody, String? message})
2023-01-04 20:17:54 +00:00
: super(code: ErrorCode.restError, message: message);
2021-02-02 14:33:23 +00:00
2023-01-04 20:17:54 +00:00
@override
2021-02-02 14:33:23 +00:00
String toString() {
return "$code $statusCode $message";
}
}