warmup-api
Version:
An API for communicating with a wifi-enabled home thermostat made by Warmup
15 lines • 464 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthorisationError = void 0;
class AuthorisationError extends Error {
message;
errorCode;
// eslint-disable-next-line no-unused-vars
constructor(message, errorCode) {
super(message);
this.message = message;
this.errorCode = errorCode;
}
}
exports.AuthorisationError = AuthorisationError;
//# sourceMappingURL=authorisation-error.js.map