class IncorrectMethodException extends Error { public constructor() { super('Incorrect method'); this.name = 'IncorrectMethod'; } } export { IncorrectMethodException };