Searched refs:MirroredTypesException (Results 1 - 7 of 7) sorted by relevance

/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DMirroredTypesException.java48 public class MirroredTypesException extends RuntimeException { class in inherits:RuntimeException
57 MirroredTypesException(String message, TypeMirror type) { method in class:MirroredTypesException
65 * Constructs a new MirroredTypesException for the specified types.
69 public MirroredTypesException(List<? extends TypeMirror> types) { method in class:MirroredTypesException
H A DMirroredTypeException.java41 * @see MirroredTypesException
45 public class MirroredTypeException extends MirroredTypesException {
/openjdk7/langtools/src/share/classes/com/sun/mirror/type/
H A DMirroredTypesException.java44 * javax.lang.model.type.MirroredTypesException}.
51 public class MirroredTypesException extends RuntimeException { class in inherits:RuntimeException
59 * Constructs a new MirroredTypesException for the specified types.
63 public MirroredTypesException(Collection<TypeMirror> types) { method in class:MirroredTypesException
/openjdk7/langtools/test/tools/javac/processing/model/type/MirroredTypeEx/
H A DPlurality.java27 * @summary Verify MirroredTypeException vs MirroredTypesException is thrown
61 } catch (MirroredTypesException mtse) {
75 } catch (MirroredTypesException mtse) {
92 } catch(MirroredTypesException mtse) {
109 } catch(MirroredTypesException mtse) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DInlineAnnotationReaderImpl.java41 import com.sun.mirror.type.MirroredTypesException;
149 throw new IllegalStateException("should throw a MirroredTypesException");
153 if( e.getCause() instanceof MirroredTypesException ) {
154 MirroredTypesException me = (MirroredTypesException)e.getCause();
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationProxyMaker.java37 import com.sun.mirror.type.MirroredTypesException;
187 // Construct a proxy for a MirroredTypesException
316 * ExceptionProxy for MirroredTypesException.
323 private MirroredTypesException ex;
329 ex = new MirroredTypesException(ts);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DAnnotationProxyMaker.java40 import javax.lang.model.type.MirroredTypesException;
187 // Construct a proxy for a MirroredTypesException
317 * ExceptionProxy for MirroredTypesException.
348 return new MirroredTypesException(types);

Completed in 200 milliseconds