Home
last modified time | relevance | path

Searched refs:CustomError (Results 1 – 5 of 5) sorted by relevance

/external/v8/test/mjsunit/regress/
Dregress-crbug-306220.js28 var CustomError = function(x) { this.x = x; }; class
29 CustomError.prototype = new Error();
30 CustomError.prototype.x = "prototype";
32 Object.defineProperties(CustomError.prototype, {
38 assertEquals("Error: instance", String(new CustomError("instance")));
/external/v8/test/mjsunit/harmony/
Dproxies-with-unscopables.js98 function CustomError() {} class in TestThrowInHasUnscopables
107 throw new CustomError();
119 }, CustomError);
/external/v8/test/mjsunit/
Dstack-traces.js128 function CustomError(message, stripPoint) { class
133 CustomError.prototype.toString = function () {
138 throw new CustomError("hep-hey", undefined);
142 throw new CustomError("hep-hey", CustomError);
/external/v8/test/mjsunit/es6/
Dunscopables.js699 function CustomError() {} class in TestGetUnscopablesGetterThrows
702 throw new CustomError();
709 }, CustomError);
720 function CustomError() {} class in TestGetUnscopablesGetterThrows2
724 throw new CustomError();
731 }, CustomError);
/external/parameter-framework/upstream/tools/coverage/
Dcoverage.py52 class CustomError(Exception): class
55 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: