Home | History | Annotate | Download | only in cts

Lines Matching defs:ne

26         NotFoundException ne;
30 ne = new NotFoundException();
33 throw ne;
36 assertSame(ne, e);
46 ne = new NotFoundException(MESSAGE);
49 throw ne;
52 assertSame(ne, e);
63 ne = new NotFoundException(MESSAGE, CAUSE);
66 throw ne;
69 assertSame(ne, e);