feat: base project

This commit is contained in:
efrilm
2025-08-12 15:18:38 +07:00
parent 2df3bb118a
commit cb5250459e
102 changed files with 3453 additions and 333 deletions
@@ -0,0 +1,16 @@
import 'package:dio/dio.dart';
class NotFoundError extends DioException {
final DioException dioError;
final String? messageError;
NotFoundError(this.dioError, this.messageError)
: super(
error: dioError.error,
requestOptions: dioError.requestOptions,
response: dioError.response,
type: dioError.type,
message: dioError.message,
stackTrace: dioError.stackTrace,
);
}