eeaab49e93
Signed-off-by: dab246 <tdvu@linagora.com>
22 lines
682 B
Dart
22 lines
682 B
Dart
import 'package:core/domain/exceptions/app_base_exception.dart';
|
|
|
|
class NotFoundDataWithThisKeyException extends AppBaseException {
|
|
const NotFoundDataWithThisKeyException([super.message]);
|
|
|
|
@override
|
|
String get exceptionName => 'NotFoundDataWithThisKeyException';
|
|
}
|
|
|
|
class NotFoundSentryConfigurationException extends AppBaseException {
|
|
const NotFoundSentryConfigurationException([super.message]);
|
|
|
|
@override
|
|
String get exceptionName => 'NotFoundSentryConfigurationException';
|
|
}
|
|
|
|
class NotFoundSentryUserException extends AppBaseException {
|
|
const NotFoundSentryUserException([super.message]);
|
|
|
|
@override
|
|
String get exceptionName => 'NotFoundSentryUserException';
|
|
} |