src/share/classes/javax/lang/model/type/MirroredTypeException.java

changeset 307
ca063536e4a6
parent 193
18c433be7aa7
child 554
9d9f26857129
equal deleted inserted replaced
305:812d5486a023 307:ca063536e4a6
52 * Constructs a new MirroredTypeException for the specified type. 52 * Constructs a new MirroredTypeException for the specified type.
53 * 53 *
54 * @param type the type being accessed 54 * @param type the type being accessed
55 */ 55 */
56 public MirroredTypeException(TypeMirror type) { 56 public MirroredTypeException(TypeMirror type) {
57 super("Attempt to access Class object for TypeMirror " + type); 57 super("Attempt to access Class object for TypeMirror " + type.toString());
58 this.type = type; 58 this.type = type;
59 } 59 }
60 60
61 /** 61 /**
62 * Returns the type mirror corresponding to the type being accessed. 62 * Returns the type mirror corresponding to the type being accessed.

mercurial