Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
yargs
/
build
/
lib
/
yerror.js
blob: 7a36684da8dbfb687f8d8dacfd69fbd8e1dab931 [
file
] [
log
] [
blame
]
export
class
YError
extends
Error
{
constructor
(
msg
)
{
super
(
msg
||
'yargs error'
);
this
.
name
=
'YError'
;
if
(
Error
.
captureStackTrace
)
{
Error
.
captureStackTrace
(
this
,
YError
);
}
}
}