UNPKG

ren-framework

Version:
20 lines (17 loc) 290 B
'use strict' const FatalError = require('./FatalError'); /** * 函数错误 * @author Verdient。 */ class InvalidMethodError extends FatalError { /** * @inheritdoc * @author Verdient。 */ get type(){ return 'Invalid Method Error'; } } module.exports = InvalidMethodError;