refactor(sentry): standardize exceptions to prevent Sentry minification
This commit is contained in:
@@ -1 +1,8 @@
|
||||
class EmptyThreadDetailException implements Exception {}
|
||||
import 'package:core/domain/exceptions/app_base_exception.dart';
|
||||
|
||||
class EmptyThreadDetailException extends AppBaseException {
|
||||
EmptyThreadDetailException([super.message]);
|
||||
|
||||
@override
|
||||
String get exceptionName => 'EmptyThreadDetailException';
|
||||
}
|
||||
|
||||
@@ -1 +1,8 @@
|
||||
class ThreadDetailOverloadException implements Exception {}
|
||||
import 'package:core/domain/exceptions/app_base_exception.dart';
|
||||
|
||||
class ThreadDetailOverloadException extends AppBaseException {
|
||||
ThreadDetailOverloadException([super.message]);
|
||||
|
||||
@override
|
||||
String get exceptionName => 'ThreadDetailOverloadException';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user