import { Exception } from './exception'; export class PrinterNotConnectedException extends Exception { constructor(message: string) { super('PrinterNotConnectedException', message); Object.setPrototypeOf(this, new.target.prototype); } }