xworkmate-app/lib/runtime/gateway_runtime_errors.part.dart
2026-03-28 11:41:17 +08:00

15 lines
374 B
Dart

part of 'gateway_runtime.dart';
class GatewayRuntimeException implements Exception {
GatewayRuntimeException(this.message, {this.code, this.details});
final String message;
final String? code;
final Object? details;
String? get detailCode => stringValue(asMap(details)['code']);
@override
String toString() => code == null ? message : '$code: $message';
}