1 7 8 package java.lang.annotation; 9 10 17 public class AnnotationFormatError extends Error { 18 24 public AnnotationFormatError(String message) { 25 super(message); 26 } 27 28 38 public AnnotationFormatError(String message, Throwable cause) { 39 super(message, cause); 40 } 41 42 43 52 public AnnotationFormatError(Throwable cause) { 53 super(cause); 54 } 55 } 56 | Popular Tags |