IncorrectMethodException.js 330 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.IncorrectMethodException = void 0;
  4. class IncorrectMethodException extends Error {
  5. constructor() {
  6. super('Incorrect method');
  7. this.name = 'IncorrectMethod';
  8. }
  9. }
  10. exports.IncorrectMethodException = IncorrectMethodException;