Sign in
chromium
/
devtools
/
devtools-frontend
/
d5a3755f19aa248cffbcf61f1628362aaa6c0377
/
.
/
node_modules
/
istanbul-api
/
lib
/
input-error.js
blob: 6554c53714be6eb51add2df629130ef954bbedbd [
file
] [
log
] [
blame
]
/*
Copyright 2012-2015, Yahoo Inc.
Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
module
.
exports
.
create
=
function
(
message
)
{
const
err
=
new
Error
(
message
);
err
.
inputError
=
true
;
return
err
;
};