Solian/lib/exceptions/unauthorized.dart

7 lines
138 B
Dart

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