Class ConcurrentAccessException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.filesystem.FileSystemException
org.refcodes.filesystem.ConcurrentAccessException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap, FileHandleAccessor

public class ConcurrentAccessException extends FileSystemException
The Class ConcurrentAccessException.
See Also:
  • Constructor Details

    • ConcurrentAccessException

      public ConcurrentAccessException(FileHandle aFile, String aMessage, String aErrorCode)
      Instantiates a new concurrent access exception.
      Parameters:
      aFile - the file
      aMessage - the message
      aErrorCode - the error code
    • ConcurrentAccessException

      public ConcurrentAccessException(FileHandle aFile, String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new concurrent access exception.
      Parameters:
      aFile - the file
      aMessage - the message
      aCause - the cause
      aErrorCode - the error code
    • ConcurrentAccessException

      public ConcurrentAccessException(FileHandle aFile, String message, Throwable cause)
      Instantiates a new concurrent access exception.
      Parameters:
      aFile - the file
      message - the message
      cause - the cause
    • ConcurrentAccessException

      public ConcurrentAccessException(FileHandle aFile, String message)
      Instantiates a new concurrent access exception.
      Parameters:
      aFile - the file
      message - the message
    • ConcurrentAccessException

      public ConcurrentAccessException(FileHandle aFile, Throwable aCause, String aErrorCode)
      Instantiates a new concurrent access exception.
      Parameters:
      aFile - the file
      aCause - the cause
      aErrorCode - the error code
    • ConcurrentAccessException

      public ConcurrentAccessException(FileHandle aFile, Throwable cause)
      Instantiates a new concurrent access exception.
      Parameters:
      aFile - the file
      cause - the cause
  • Method Details