UNPKG

@dream11mobile/react-native-firebase

Version:

A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Sto

10 lines (9 loc) 308 B
export default class NativeError extends Error { constructor(nativeError) { super(nativeError.message); this.code = nativeError.code; this.message = nativeError.message; this.nativeErrorCode = nativeError.nativeErrorCode; this.nativeErrorMessage = nativeError.nativeErrorMessage; } }