base project

This commit is contained in:
efrilm
2025-10-23 22:16:53 +07:00
parent 6612cef24f
commit 4fee7c4bb7
52 changed files with 3319 additions and 229 deletions
@@ -0,0 +1,16 @@
import 'package:dio/dio.dart';
class UnauthorizedError extends DioException {
final DioException dioError;
final String? messageError;
UnauthorizedError(this.dioError, this.messageError)
: super(
requestOptions: dioError.requestOptions,
error: dioError.error,
response: dioError.response,
type: dioError.type,
message: dioError.message,
stackTrace: dioError.stackTrace,
);
}