testsjava.lang.annotation.AnnotationFormatError#AnnotationFormatError(String) AnnotationFormatError e = new AnnotationFormatError("some message"); assertEquals("some message", e.getMessage());
AnnotationFormatError e = new AnnotationFormatError("some message"); assertEquals("some message", e.getMessage());
testsjava.lang.annotation.AnnotationFormatError#AnnotationFormatError(String,Throwable) IllegalArgumentException iae = new IllegalArgumentException(); AnnotationFormatError e = new AnnotationFormatError("some message", iae); assertEquals("some message", e.getMessage()); assertSame(iae, e.getCause());
IllegalArgumentException iae = new IllegalArgumentException(); AnnotationFormatError e = new AnnotationFormatError("some message", iae); assertEquals("some message", e.getMessage()); assertSame(iae, e.getCause());
testsjava.lang.annotation.AnnotationFormatError#AnnotationFormatError(Throwable) IllegalArgumentException iae = new IllegalArgumentException(); AnnotationFormatError e = new AnnotationFormatError(iae); assertSame(iae, e.getCause());
IllegalArgumentException iae = new IllegalArgumentException(); AnnotationFormatError e = new AnnotationFormatError(iae); assertSame(iae, e.getCause());