/** * 核心异常类 * MethodNotAllowedException * code 405 * @author ranyunlong<549510622@qq.com> * license MIT */ import { HttpException, Properties } from "./HttpException"; /** * @code 405 */ export declare class MethodNotAllowedException extends HttpException { constructor(properties?: Properties | boolean, error?: Properties, message?: string); }