UNPKG

node-web-mvc

Version:
9 lines (8 loc) 277 B
/** * @module HttpRequestMethodNotSupportedException * @description 请求方法不支持 */ import Exception from './Exception'; export default class HttpRequestMethodNotSupportedException extends Exception { constructor(method: string, allowMethods: Array<string>); }