blob: cf9cc84a0ec443669fceead09fb91a1d17e590a3 [file] [log] [blame] [edit]
'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;
}