Package org.synchronoss.cpo.core
Class CpoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.synchronoss.cpo.core.CpoException
- All Implemented Interfaces:
Serializable
A
CpoException is the common superclass for any number of CPO related exceptions
that may occur during the execution of a business task.- Author:
- David E. Berry
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aCpoExceptionwith no specified detail message.CpoException(String message) Constructs aCpoExceptionwith the specified detail message.CpoException(String message, Throwable cause) Constructs aCpoExceptionwith the specified detail message and nested exception.Constructs aCpoExceptionwith the specified detail message and nested exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CpoException
public CpoException()Constructs aCpoExceptionwith no specified detail message. -
CpoException
Constructs aCpoExceptionwith the specified detail message.- Parameters:
message- the detail message
-
CpoException
Constructs aCpoExceptionwith the specified detail message and nested exception.- Parameters:
message- the detail messagecause- the nested exception
-
CpoException
Constructs aCpoExceptionwith the specified detail message and nested exception.- Parameters:
ex- the nested exception
-