b020bcc6c0
(cherry picked from commit 5f54d8e3975b42721f45d54ff44bec2ef6508911)
67 lines
1.9 KiB
Dart
67 lines
1.9 KiB
Dart
|
|
import 'package:equatable/equatable.dart';
|
|
import 'package:jmap_dart_client/jmap/core/error/error_type.dart';
|
|
import 'package:jmap_dart_client/jmap/core/error/method/error_method_response.dart';
|
|
|
|
abstract class RemoteException with EquatableMixin implements Exception {
|
|
static const connectError = 'Connect error';
|
|
static const internalServerError = 'Internal Server Error';
|
|
static const noNetworkError = 'No network error';
|
|
static const badCredentials = 'Bad credentials';
|
|
|
|
final String? message;
|
|
final int? code;
|
|
|
|
const RemoteException({this.code, this.message});
|
|
}
|
|
|
|
class BadCredentialsException extends RemoteException {
|
|
const BadCredentialsException() : super(message: RemoteException.badCredentials);
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
}
|
|
|
|
class UnknownError extends RemoteException {
|
|
const UnknownError({int? code, String? message}) : super(code: code, message: message);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class ConnectError extends RemoteException {
|
|
const ConnectError() : super(message: RemoteException.connectError);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class InternalServerError extends RemoteException {
|
|
const InternalServerError() : super(message: RemoteException.internalServerError);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class MethodLevelErrors extends RemoteException {
|
|
final ErrorType type;
|
|
|
|
const MethodLevelErrors(
|
|
this.type,
|
|
{String? message}
|
|
) : super(message: message);
|
|
|
|
@override
|
|
List<Object?> get props => [type, message];
|
|
}
|
|
|
|
class CannotCalculateChangesMethodResponseException extends MethodLevelErrors {
|
|
CannotCalculateChangesMethodResponseException({String? message}) : super(ErrorMethodResponse.cannotCalculateChanges, message: message);
|
|
}
|
|
|
|
class NoNetworkError extends RemoteException {
|
|
const NoNetworkError() : super(message: RemoteException.noNetworkError);
|
|
|
|
@override
|
|
List<Object?> get props => [message];
|
|
} |