react-native-firebase/lib/modules/functions/HttpsError.js

12 lines
303 B
JavaScript
Raw Normal View History

2018-05-06 12:50:39 +00:00
import type { FunctionsErrorCode } from './types.flow';
export default class HttpsError extends Error {
+details: ?any;
+code: FunctionsErrorCode;
constructor(code: FunctionsErrorCode, message?: string, details?: any) {
super(message);
this.details = details;
this.code = code;
}
}