xworkmate-app/lib/app/app_controller_desktop_runtime_exceptions.dart
2026-04-10 11:55:36 +08:00

15 lines
338 B
Dart

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;
}