IncorrectMethodException.js 382 B

1234567891011
  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;
  11. //# sourceMappingURL=IncorrectMethodException.js.map