mirror of
https://github.com/appwrite/sdk-for-flutter.git
synced 2026-06-06 19:37:52 +00:00
10 lines
209 B
Dart
10 lines
209 B
Dart
part of appwrite;
|
|
|
|
class AppwriteException implements Exception {
|
|
final String? message;
|
|
final int? code;
|
|
final dynamic response;
|
|
|
|
AppwriteException([this.message = "", this.code, this.response]);
|
|
|
|
} |