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