iamolegga/nest-nsq-transport

View on GitHub
src/errors.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export class RPCNotSupported extends Error {
  constructor() {
    super('request-response messages are not supported');
    Object.setPrototypeOf(this, new.target.prototype);
  }
}