001package net.gdface.annotation; 002 003public class GenericNameException extends AnnotationException { 004 005 /** 006 * 007 */ 008 private static final long serialVersionUID = 6675379731611428281L; 009 010 public GenericNameException() { 011 // TODO 自动生成的构造函数存根 012 } 013 014 public GenericNameException(String message) { 015 super(message); 016 // TODO 自动生成的构造函数存根 017 } 018 019 public GenericNameException(Throwable cause) { 020 super(cause); 021 // TODO 自动生成的构造函数存根 022 } 023 024 public GenericNameException(String message, Throwable cause) { 025 super(message, cause); 026 // TODO 自动生成的构造函数存根 027 } 028 029}