UNPKG

aes70

Version:

A controller library for the AES70 protocol.

10 lines (9 loc) 225 B
/** * Error class raised when a connection is closed due to a timeout. */ export class TimeoutError extends Error { constructor(error) { super(`Connection has timed out.`); this.name = 'aes70.TimeoutError'; } }