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