UNPKG

node-web-mvc

Version:
10 lines (9 loc) 347 B
/** * @module AnnotationElementTypeError * @description 注解使用范围异常 */ import ElementType from '../servlets/annotations/annotation/ElementType'; import Exception from './Exception'; export default class AnnotationElementTypeError extends Exception { constructor(name: string, types: Array<string>, elementType: ElementType); }