cargo66/lib/core/errors/exceptions.dart

11 lines
216 B
Dart
Raw Normal View History

2024-07-23 04:27:35 +00:00
//date
class ServerException implements Exception {}
class CacheException implements Exception {}
//route
class RouteException implements Exception {
final String message;
const RouteException(this.message);
}