Class FileSystemMetadataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.portal.exception.PortalException
-
- com.aquima.interactions.portal.exception.FileSystemMetadataException
-
- All Implemented Interfaces:
Serializable
public class FileSystemMetadataException extends PortalException
Indicative of a problem related to the interaction with Content-related metadata on a file system.- Since:
- 9.3
- Author:
- G. der Kinderen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileSystemMetadataException(String message)
Basic constructor with only a message explaining the cause of the error.FileSystemMetadataException(String message, Throwable cause)
Constructor with both a message and an exception explaining the cause of the error.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FileSystemMetadataException
public FileSystemMetadataException(String message, Throwable cause)
Constructor with both a message and an exception explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.cause
- The original cause of the error.
-
FileSystemMetadataException
public FileSystemMetadataException(String message)
Basic constructor with only a message explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.
-
-