7 lines
138 B
Dart
7 lines
138 B
Dart
class UnauthorizedException implements Exception {
|
|
const UnauthorizedException();
|
|
|
|
@override
|
|
String toString() => 'Unauthorized';
|
|
}
|