You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
385 B
19 lines
385 B
'use strict'; |
|
|
|
/** |
|
* A `Cancel` is an object that is thrown when an operation is canceled. |
|
* |
|
* @class |
|
* @param {string=} message The message. |
|
*/ |
|
function Cancel(message) { |
|
this.message = message; |
|
} |
|
|
|
Cancel.prototype.toString = function toString() { |
|
return 'Cancel' + (this.message ? ': ' + this.message : ''); |
|
}; |
|
|
|
Cancel.prototype.__CANCEL__ = true; |
|
|
|
module.exports = Cancel;
|
|
|