UNPKG

homebridge-daikin-local-platform

Version:

Homebridge platform plugin providing HomeKit support for Daikin air conditioners with local control

13 lines (12 loc) 301 B
class DaikinBaseException extends Error { constructor(message: string) { super(message); this.name = 'DaikinBaseException'; } } export class DaikinDeviceOffline extends DaikinBaseException { constructor(message: string) { super(message); this.name = 'DaikinDeviceOffline'; } }