UNPKG

@libp2p/mplex

Version:

JavaScript implementation of https://github.com/libp2p/mplex

10 lines (9 loc) 231 B
/** * There was an error in the stream input buffer */ export class StreamInputBufferError extends Error { constructor (message = 'Stream input buffer error') { super(message) this.name = 'StreamInputBufferError' } }