'use strict';/** * A `Cancel` is an object that is thrown when an operation is canceled. * * @class * @param {string=} message The message. */functionCancel(message){this.message=message;}Cancel.prototype.toString=functiontoString(){return'Cancel'+(this.message?': '+this.message:'');};Cancel.prototype.__CANCEL__=true;module.exports=Cancel;