Home | History | Annotate | Download | only in file

Lines Matching defs:exception

28         NotDirectoryException exception = new NotDirectoryException("file");
29 assertEquals("file", exception.getFile());
30 assertNull(exception.getOtherFile());
31 assertNull(exception.getReason());
33 assertTrue(exception instanceof FileSystemException);
70 NotDirectoryException exception = (NotDirectoryException) SerializationTester
73 String hex1 = SerializationTester.serializeHex(exception).toString();
75 assertEquals("file", exception.getFile());
76 assertNull(exception.getOtherFile());
77 assertNull(exception.getReason());