Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
mocha
/
lib
/
pending.js
blob: cf9cc84a0ec443669fceead09fb91a1d17e590a3 [
file
] [
log
] [
blame
]
'use strict'
;
/**
@module Pending
*/
module
.
exports
=
Pending
;
/**
* Initialize a new `Pending` error with the given message.
*
* @param {string} message
*/
function
Pending
(
message
)
{
this
.
message
=
message
;
}