11 lines
216 B
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);
|
||
|
|
}
|