ts-mailcow-api
Version:
TypeScript wrapper for the mailcow API.
14 lines • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MailcowException = void 0;
/**
* Error class used for exception handling.
*/
class MailcowException extends Error {
constructor(message, options) {
super(message, options);
this.name = 'MailcowException';
}
}
exports.MailcowException = MailcowException;
//# sourceMappingURL=types.js.map