Package org.apache.syncope.common.lib
Class SyncopeClientCompositeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.syncope.common.lib.SyncopeClientException
-
- org.apache.syncope.common.lib.SyncopeClientCompositeException
-
- All Implemented Interfaces:
Serializable
public class SyncopeClientCompositeException extends SyncopeClientException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SyncopeClientCompositeException()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
addException(SyncopeClientException exception)
SyncopeClientException
getException(ClientExceptionType exceptionType)
Set<SyncopeClientException>
getExceptions()
String
getLocalizedMessage()
String
getMessage()
boolean
hasException(ClientExceptionType exceptionType)
boolean
hasExceptions()
-
Methods inherited from class org.apache.syncope.common.lib.SyncopeClientException
asComposite, build, buildComposite, getElements, getType, isComposite, isEmpty, setType, size
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
hasExceptions
public boolean hasExceptions()
-
hasException
public boolean hasException(ClientExceptionType exceptionType)
-
getException
public SyncopeClientException getException(ClientExceptionType exceptionType)
-
getExceptions
public Set<SyncopeClientException> getExceptions()
-
addException
public boolean addException(SyncopeClientException exception)
-
getMessage
public String getMessage()
- Overrides:
getMessage
in classSyncopeClientException
-
getLocalizedMessage
public String getLocalizedMessage()
- Overrides:
getLocalizedMessage
in classSyncopeClientException
-
-