LighthouseApp/lib/app/network/http_error.dart
speakeloudest 75d4c48e41
Some checks failed
Build Windows / build (push) Has been cancelled
feat: 源码提交
2025-10-19 23:30:54 -07:00

11 lines
229 B
Dart
Executable File

/// 接口返回的 -999等错误
class HttpError implements Exception {
int code;
String msg;
HttpError({required this.msg, required this.code});
@override
String toString() => 'ChatError(code: $code, msg: $msg)';
}