import 'package:tmail_ui_user/main/exceptions/remote/remote_exception.dart'; class UnknownRemoteException extends RemoteException { final Object? error; const UnknownRemoteException({ super.code, super.message, this.error, }); @override String get exceptionName => 'UnknownRemoteException'; @override List get props => [...super.props, error]; }