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.js105 function CustomError() {} class in TestThrowInHasUnscopables
111 throw new CustomError();
126 }, CustomError);
/external/v8/test/mjsunit/
Dstack-traces.js97 function CustomError(message, stripPoint) { class
102 CustomError.prototype.toString = function () {
107 throw new CustomError("hep-hey", undefined);
111 throw new CustomError("hep-hey", CustomError);
/external/parameter-framework/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:
/external/v8/test/mjsunit/es6/
Dunscopables.js649 function CustomError() {} class in TestGetUnscopablesGetterThrows
652 throw new CustomError();
659 }, CustomError);