Home
last modified time | relevance | path

Searched refs:FileSystemException (Results 1 – 25 of 26) sorted by relevance

12

/libcore/luni/src/test/java/libcore/java/nio/file/
DFileSystemExceptionTest.java22 import java.nio.file.FileSystemException;
28 FileSystemException exception = new FileSystemException("file"); in test_constructor$String()
36 FileSystemException exception = new FileSystemException("file", "otherFile", "reason"); in test_constructor$String$String$String()
77 FileSystemException exception = (FileSystemException) SerializationTester in test_serialization()
88 FileSystemException exception = new FileSystemException("file", "otherFile", "reason"); in test_getMessage()
91 exception = new FileSystemException("file", "otherFile", null); in test_getMessage()
94 exception = new FileSystemException(null, "otherFile", "reason"); in test_getMessage()
97 exception = new FileSystemException("file", null, "reason"); in test_getMessage()
DFileSystemLoopExceptionTest.java22 import java.nio.file.FileSystemException;
31 assertTrue(exception instanceof FileSystemException); in test_constructor$String()
DNotDirectoryExceptionTest.java22 import java.nio.file.FileSystemException;
33 assertTrue(exception instanceof FileSystemException); in test_constructor$String()
DDirectoryNotEmptyExceptionTest.java23 import java.nio.file.FileSystemException;
34 assertTrue(exception instanceof FileSystemException); in test_constructor$String()
DAtomicMoveNotSupportedExceptionTest.java23 import java.nio.file.FileSystemException;
34 assertTrue(exception instanceof FileSystemException); in test_constructor$String$String$String()
DFileAlreadyExistsExceptionTest.java23 import java.nio.file.FileSystemException;
33 assertTrue(exception instanceof FileSystemException); in test_constructor$String()
DNotLinkExceptionTest.java22 import java.nio.file.FileSystemException;
33 assertTrue(exception instanceof FileSystemException); in test_constructor$String()
DNoSuchFileExceptionTest.java22 import java.nio.file.FileSystemException;
33 assertTrue(exception instanceof FileSystemException); in test_constructor$String()
DAccessDeniedExceptionTest.java23 import java.nio.file.FileSystemException;
34 assertTrue(exception instanceof FileSystemException); in test_constructor$String()
DDefaultSecureDirectoryStreamTest.java31 import java.nio.file.FileSystemException;
165 } catch (FileSystemException expected) {} in test_newDirectoryStream_symbolicLink()
276 } catch (FileSystemException expected) {} in test_deleteFile()
311 } catch (FileSystemException expected) {} in test_deleteDirectory()
/libcore/ojluni/src/main/java/java/nio/file/
DFileSystemException.java37 public class FileSystemException class
53 public FileSystemException(String file) { in FileSystemException() method in FileSystemException
72 public FileSystemException(String file, String other, String reason) { in FileSystemException() method in FileSystemException
DNotDirectoryException.java36 extends FileSystemException
DDirectoryNotEmptyException.java36 extends FileSystemException
DFileSystemLoopException.java36 extends FileSystemException
DAtomicMoveNotSupportedException.java36 extends FileSystemException
DNotLinkException.java36 extends FileSystemException
DNoSuchFileException.java36 extends FileSystemException
DAccessDeniedException.java41 extends FileSystemException
DFileAlreadyExistsException.java36 extends FileSystemException
DFiles.java756 throw new FileSystemException(dir.toString(), null,
/libcore/ojluni/src/main/java/sun/nio/fs/
DLinuxUserDefinedFileAttributeView.java58 throw new FileSystemException(file.getPathForExceptionMessage(), in nameAsBytes()
123 throw new FileSystemException(file.getPathForExceptionMessage(), in list()
145 throw new FileSystemException(file.getPathForExceptionMessage(), in size()
202 throw new FileSystemException(file.getPathForExceptionMessage(), in read()
262 throw new FileSystemException(file.getPathForExceptionMessage(), in write()
283 throw new FileSystemException(file.getPathForExceptionMessage(), in delete()
DUnixException.java96 return new FileSystemException(file, other, errorString() in translateToIOException()
100 return new FileSystemException(file, other, errorString()); in translateToIOException()
DUnixPath.java784 throw new FileSystemException(getPathForExceptionMessage(), null, in openForAttributeAccess()
/libcore/api/
Dcurrent.txt7374 public class AccessDeniedException extends java.nio.file.FileSystemException {
7385 public class AtomicMoveNotSupportedException extends java.nio.file.FileSystemException {
7409 public class DirectoryNotEmptyException extends java.nio.file.FileSystemException {
7420 public class FileAlreadyExistsException extends java.nio.file.FileSystemException {
7460 public class FileSystemException extends java.io.IOException {
7461 ctor public FileSystemException(String);
7462 ctor public FileSystemException(String, String, String);
7468 public class FileSystemLoopException extends java.nio.file.FileSystemException {
7588 public class NoSuchFileException extends java.nio.file.FileSystemException {
7593 public class NotDirectoryException extends java.nio.file.FileSystemException {
[all …]
/libcore/
Dopenjdk_java_files.bp489 "ojluni/src/main/java/java/nio/file/FileSystemException.java",

12