lib/src/util/error/MethodNotSupportedError.ts

11 lines
268 B
TypeScript
Raw Normal View History

2021-10-18 17:48:16 +00:00
import {ErrorWithContext} from './ErrorWithContext'
export class MethodNotSupportedError extends ErrorWithContext {
constructor(
message = 'Method not supported',
context: {[key: string]: any} = {},
) {
super(message, context)
}
}