Delete unused File

This commit is contained in:
raf-dev1
2025-06-11 12:54:38 +03:00
committed by GitHub
parent 2a5d602e94
commit 5ddfb47977

View File

@ -1,16 +0,0 @@
import 'enums.dart';
class GenericException implements Exception {
final ExceptionType type;
final String errorMessage;
const GenericException(
{required this.type, this.errorMessage = "Unknown Error"});
@override
String toString() {
return errorMessage;
}
List<Object?> get props => [type, errorMessage];
}