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