Searched refs:CustomError (Results 1 – 5 of 5) sorted by relevance
28 var CustomError = function(x) { this.x = x; }; class29 CustomError.prototype = new Error();30 CustomError.prototype.x = "prototype";32 Object.defineProperties(CustomError.prototype, {38 assertEquals("Error: instance", String(new CustomError("instance")));
98 function CustomError() {} class in TestThrowInHasUnscopables107 throw new CustomError();119 }, CustomError);
128 function CustomError(message, stripPoint) { class133 CustomError.prototype.toString = function () {138 throw new CustomError("hep-hey", undefined);142 throw new CustomError("hep-hey", CustomError);
699 function CustomError() {} class in TestGetUnscopablesGetterThrows702 throw new CustomError();709 }, CustomError);720 function CustomError() {} class in TestGetUnscopablesGetterThrows2724 throw new CustomError();731 }, CustomError);
52 class CustomError(Exception): class55 class ChildError(CustomError):490 class IneligibleConfigurationAppliedError(CustomError):610 class ChangeRequestToNonAccessibleState(CustomError):711 class ConfigAppliedWithoutCriteriaError(CustomError):723 class ChangeRequestOnUnknownCriterion(CustomError):860 except CustomError as ex:1061 except CustomError as ex: