UNPKG

chrome-devtools-frontend

Version:
52 lines (51 loc) 2.57 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MissingValueError = exports.InvalidValueTypeError = exports.InvalidValueError = exports.FormatError = exports.ErrorCode = void 0; var tslib_1 = require("tslib"); var ErrorCode; (function (ErrorCode) { // When we have a placeholder but no value to format ErrorCode["MISSING_VALUE"] = "MISSING_VALUE"; // When value supplied is invalid ErrorCode["INVALID_VALUE"] = "INVALID_VALUE"; // When we need specific Intl API but it's not available ErrorCode["MISSING_INTL_API"] = "MISSING_INTL_API"; })(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {})); var FormatError = /** @class */ (function (_super) { tslib_1.__extends(FormatError, _super); function FormatError(msg, code, originalMessage) { var _this = _super.call(this, msg) || this; _this.code = code; _this.originalMessage = originalMessage; return _this; } FormatError.prototype.toString = function () { return "[formatjs Error: " + this.code + "] " + this.message; }; return FormatError; }(Error)); exports.FormatError = FormatError; var InvalidValueError = /** @class */ (function (_super) { tslib_1.__extends(InvalidValueError, _super); function InvalidValueError(variableId, value, options, originalMessage) { return _super.call(this, "Invalid values for \"" + variableId + "\": \"" + value + "\". Options are \"" + Object.keys(options).join('", "') + "\"", ErrorCode.INVALID_VALUE, originalMessage) || this; } return InvalidValueError; }(FormatError)); exports.InvalidValueError = InvalidValueError; var InvalidValueTypeError = /** @class */ (function (_super) { tslib_1.__extends(InvalidValueTypeError, _super); function InvalidValueTypeError(value, type, originalMessage) { return _super.call(this, "Value for \"" + value + "\" must be of type " + type, ErrorCode.INVALID_VALUE, originalMessage) || this; } return InvalidValueTypeError; }(FormatError)); exports.InvalidValueTypeError = InvalidValueTypeError; var MissingValueError = /** @class */ (function (_super) { tslib_1.__extends(MissingValueError, _super); function MissingValueError(variableId, originalMessage) { return _super.call(this, "The intl string context variable \"" + variableId + "\" was not provided to the string \"" + originalMessage + "\"", ErrorCode.MISSING_VALUE, originalMessage) || this; } return MissingValueError; }(FormatError)); exports.MissingValueError = MissingValueError;