Package com.saperion.exception
Class SaSetContentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.saperion.exception.SaBasicException
-
- com.saperion.exception.SaJCRException
-
- com.saperion.exception.SaSetContentException
-
- All Implemented Interfaces:
java.io.Serializable
public class SaSetContentException extends SaJCRException
Exceptions in setting content, occur in the following situations:- "creating temporary file failed",
- "making up temporary file name failed",
- "handle to temporary content file is invalid",
- "writing buffer to content file failed",
- "inserting content into document failed",
- "closing temporary file failed".
- Author:
- rad
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SaSetContentException(java.lang.String message)
ConstructsSaSetContentException
with the specified message.SaSetContentException(java.lang.String message, java.lang.Throwable cause)
ConstructsSaSetContentException
with the specified message and nested exception.
-
-
-
Constructor Detail
-
SaSetContentException
public SaSetContentException(java.lang.String message)
ConstructsSaSetContentException
with the specified message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).- See Also:
SaBasicException(String)
-
SaSetContentException
public SaSetContentException(java.lang.String message, java.lang.Throwable cause)
ConstructsSaSetContentException
with the specified message and nested exception.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- See Also:
SaBasicException(String,Throwable)
-
-