org.apache.commons.io
Class FileExistsException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by org.apache.commons.io.FileExistsException
All Implemented Interfaces:
Serializable

public class FileExistsException
extends IOException

Indicates that a file already exists.

Since:
Commons IO 2.0
Version:
$Id: FileExistsException.java 982433 2010-08-04 23:56:03Z niallp $
See Also:
Serialized Form

Constructor Summary
FileExistsException()
          Default Constructor.
FileExistsException(File file)
          Construct an instance with the specified file.
FileExistsException(String message)
          Construct an instance with the specified message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

FileExistsException

public FileExistsException()
Default Constructor.


FileExistsException

public FileExistsException(String message)
Construct an instance with the specified message.

Parameters:
message - The error message

FileExistsException

public FileExistsException(File file)
Construct an instance with the specified file.

Parameters:
file - The file that exists


Copyright © 2002-2010 The Apache Software Foundation. All Rights Reserved.