IncorrectMethodException.ts 175 B

12345678
  1. class IncorrectMethodException extends Error {
  2. public constructor() {
  3. super('Incorrect method');
  4. this.name = 'IncorrectMethod';
  5. }
  6. }
  7. export { IncorrectMethodException };