react-native-cloud-storage
Version:
☁️ Save to & read from iCloud and Google Drive using React Native
16 lines (12 loc) • 414 B
text/typescript
/* eslint-disable @typescript-eslint/no-explicit-any */
import type { NativeCloudStorageErrorCode } from '../types/native';
class CloudStorageError extends Error {
code: NativeCloudStorageErrorCode;
details?: any;
constructor(message: string, code: NativeCloudStorageErrorCode, details?: any) {
super(message);
this.code = code;
this.details = details;
}
}
export default CloudStorageError;