mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 07:15:09 +00:00
16 lines
227 B
JavaScript
16 lines
227 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Expose `Pending`.
|
|
*/
|
|
|
|
module.exports = Pending;
|
|
|
|
/**
|
|
* Initialize a new `Pending` error with the given message.
|
|
*
|
|
* @param {string} message
|
|
*/
|
|
function Pending (message) {
|
|
this.message = message;
|
|
}
|