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