Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException java.nio.file.FileSystemException
public class FileSystemException extends IOException
Thrown when a file system operation fails on one or two files. This class is the general class for file system exceptions.
Constructor and Description |
---|
FileSystemException(String file)
Constructs an instance of this class. |
FileSystemException(String file,
String other,
String reason)
Constructs an instance of this class. |
Modifier and Type | Method and Description |
---|---|
String |
getFile()
Returns the file used to create this exception. |
String |
getMessage()
Returns the detail message string. |
String |
getOtherFile()
Returns the other file used to create this exception. |
String |
getReason()
Returns the string explaining why the file system operation failed. |
Methods inherited from class java.lang.Throwable |
---|
addSuppressedException, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public FileSystemException(String file)
file
- a string identifying the file or null
if not known.public FileSystemException(String file, String other, String reason)
file
- a string identifying the file or null
if not known.other
- a string identifying the other file or null
if there
isn't another file or if not knownreason
- a reason message with additional information or null
Method Detail |
---|
public String getFile()
null
)public String getOtherFile()
null
)public String getReason()
public String getMessage()
getMessage
in class Throwable
Throwable
instance
(which may be null
).
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.