9 lines
224 B
Dart
9 lines
224 B
Dart
import 'package:core/domain/exceptions/app_base_exception.dart';
|
|
|
|
class NullQuotaException extends AppBaseException {
|
|
NullQuotaException([super.message]);
|
|
|
|
@override
|
|
String get exceptionName => 'NullQuotaException';
|
|
}
|