1 7 8 package javax.lang.model.type; 9 10 11 import java.lang.annotation.Annotation ; 12 import javax.lang.model.element.Element; 13 14 15 27 public class MirroredTypeException extends RuntimeException { 28 29 private static final long serialVersionUID = 269; 30 31 private transient TypeMirror type; 33 38 public MirroredTypeException(TypeMirror type) { 39 super("Attempt to access Class object for TypeMirror " + type); 40 this.type = type; 41 } 42 43 50 public TypeMirror getTypeMirror() { 51 return type; 52 } 53 } 54 | Popular Tags |