9 lines
192 B
Dart
9 lines
192 B
Dart
import 'package:dio/dio.dart';
|
|
|
|
class KratosErrorInterceptor extends Interceptor {
|
|
@override
|
|
void onError(DioException err, ErrorInterceptorHandler handler) {
|
|
handler.next(err);
|
|
}
|
|
}
|