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")));
105 function CustomError() {} class in TestThrowInHasUnscopables111 throw new CustomError();126 }, CustomError);
97 function CustomError(message, stripPoint) { class102 CustomError.prototype.toString = function () {107 throw new CustomError("hep-hey", undefined);111 throw new CustomError("hep-hey", 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:
649 function CustomError() {} class in TestGetUnscopablesGetterThrows652 throw new CustomError();659 }, CustomError);