1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.IncorrectMethodException = void 0;
- class IncorrectMethodException extends Error {
- constructor() {
- super('Incorrect method');
- this.name = 'IncorrectMethod';
- }
- }
- exports.IncorrectMethodException = IncorrectMethodException;
- //# sourceMappingURL=IncorrectMethodException.js.map
|