Files
sdk-for-flutter/lib/exception.dart
T
2021-04-21 09:03:33 +03:00

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