xdl
Version:
The Expo Development Library
29 lines (27 loc) • 1.45 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
const ERROR_PREFIX = 'Error: ';
class XDLError extends Error {
constructor(code, message) {
super('');
// If e.toString() was called to get `message` we don't want it to look
// like "Error: Error:".
_defineProperty(this, "name", 'XDLError');
_defineProperty(this, "code", void 0);
_defineProperty(this, "isXDLError", void 0);
if (message.startsWith(ERROR_PREFIX)) {
message = message.substring(ERROR_PREFIX.length);
}
this.message = message;
this.code = code;
this.isXDLError = true;
}
}
exports.default = XDLError;
//# sourceMappingURL=XDLError.js.map
;