Files
Solian/lib/exceptions/unauthorized.dart
2024-08-21 15:25:50 +08:00

7 lines
138 B
Dart

class UnauthorizedException implements Exception {
const UnauthorizedException();
@override
String toString() => 'Unauthorized';
}