001 package net.sourceforge.retroweaver.runtime.java.lang.annotation; 002 003 /** 004 * A mirror of java.lang.annotation.AnnotationFormatError. 005 * 006 * @author Toby Reyelts 007 */ 008 public class AnnotationFormatError extends Error { 009 010 public AnnotationFormatError(final String message) { 011 super(message); 012 } 013 014 public AnnotationFormatError(final String message, final Throwable cause) { 015 super(message, cause); 016 } 017 018 public AnnotationFormatError(final Throwable cause) { 019 super(cause == null ? null : cause.toString(), cause); 020 } 021 }