xworkmate-app/lib/app/app_controller_desktop_runtime_exceptions.dart

15 lines
338 B
Dart
Raw Normal View History

class AiGatewayChatExceptionInternal implements Exception {
const AiGatewayChatExceptionInternal(this.message);
final String message;
@override
String toString() => message;
}
class AiGatewayAbortExceptionInternal implements Exception {
const AiGatewayAbortExceptionInternal(this.partialText);
final String partialText;
}