blob: bb9a5053373ea32e59ce7e86395b2db239f00bdd [file] [log] [blame]
'use strict';
module.exports = Pending;
/**
* Initialize a new `Pending` error with the given message.
*
* @param {string} message
*/
function Pending(message) {
this.message = message;
}