org.apache.commons.io
Class DirectoryWalker.CancelException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--org.apache.commons.io.DirectoryWalker.CancelException
- All Implemented Interfaces:
- Serializable
- Enclosing class:
- DirectoryWalker
- public static class DirectoryWalker.CancelException
- extends IOException
CancelException is thrown in DirectoryWalker to cancel the current
processing.
- See Also:
- Serialized Form
Field Summary |
private int |
depth
The file depth when the exception was thrown. |
private File |
file
The file being processed when the exception was thrown. |
private static long |
serialVersionUID
Serialization id. |
Method Summary |
int |
getDepth()
Return the depth when the operation was cancelled. |
File |
getFile()
Return the file when the operation was cancelled. |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait |
serialVersionUID
private static final long serialVersionUID
- Serialization id.
file
private File file
- The file being processed when the exception was thrown.
depth
private int depth
- The file depth when the exception was thrown.
DirectoryWalker.CancelException
public DirectoryWalker.CancelException(File file,
int depth)
- Constructs a
CancelException
with
the file and depth when cancellation occurred.
- Parameters:
file
- the file when the operation was cancelled, may be nulldepth
- the depth when the operation was cancelled, may be null
DirectoryWalker.CancelException
public DirectoryWalker.CancelException(String message,
File file,
int depth)
- Constructs a
CancelException
with
an appropriate message and the file and depth when
cancellation occurred.
- Parameters:
message
- the detail messagefile
- the file when the operation was cancelleddepth
- the depth when the operation was cancelled
getFile
public File getFile()
- Return the file when the operation was cancelled.
- Returns:
- the file when the operation was cancelled
getDepth
public int getDepth()
- Return the depth when the operation was cancelled.
- Returns:
- the depth when the operation was cancelled