mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 18:57:05 +08:00
9 lines
198 B
Dart
9 lines
198 B
Dart
class ChatFailure implements Exception {
|
|
final String message;
|
|
final String? code;
|
|
const ChatFailure(this.message, {this.code});
|
|
|
|
@override
|
|
String toString() => 'ChatFailure: $message';
|
|
}
|