001package net.gdface.annotation;
002
003public class GenericParamException extends AnnotationException {
004
005        /**
006         * 
007         */
008        private static final long serialVersionUID = -5730227994830188556L;
009
010        public GenericParamException() {
011        }
012
013        public GenericParamException(String message) {
014                super(message);
015        }
016
017        public GenericParamException(Throwable cause) {
018                super(cause);
019        }
020
021        public GenericParamException(String message, Throwable cause) {
022                super(message, cause);
023        }
024
025}