cargo66/lib/core/errors/exceptions.dart

11 lines
216 B
Dart

//date
class ServerException implements Exception {}
class CacheException implements Exception {}
//route
class RouteException implements Exception {
final String message;
const RouteException(this.message);
}