Class FileInUseException

All Implemented Interfaces:
Serializable

public class FileInUseException extends IOException
FileInUseException indicates that there was contention for a file which is in-use. This can be caused for various reasons including a file lock of some kind.
See Also:
  • Constructor Details

    • FileInUseException

      public FileInUseException(String msg)
      Create a new FileInUseException with the given message.
      Parameters:
      msg - the exception message.
    • FileInUseException

      public FileInUseException(String msg, Throwable cause)
      Create a new FileInUseException with the given message and cause.
      Parameters:
      msg - the exception message.