Files
workavia-mail-front/lib/main/exceptions/remote/unknown_remote_exception.dart
T

12 lines
278 B
Dart

import 'package:tmail_ui_user/main/exceptions/remote/remote_exception.dart';
class UnknownRemoteException extends RemoteException {
const UnknownRemoteException({
super.code,
super.message,
});
@override
String get exceptionName => 'UnknownRemoteException';
}