Uses of Class
de.aristaflow.ilm.util.IlmException
-
-
Uses of IlmException in de.aristaflow.ilm.base.configuration
Subclasses of IlmException in de.aristaflow.ilm.base.configuration Modifier and Type Class Description class
AbortServiceException
class
ConfigurationException
-
Uses of IlmException in de.aristaflow.ilm.base.security
Subclasses of IlmException in de.aristaflow.ilm.base.security Modifier and Type Class Description class
AuthenticationException
class
PasswordPolicyException
-
Uses of IlmException in de.aristaflow.ilm.base.service
Subclasses of IlmException in de.aristaflow.ilm.base.service Modifier and Type Class Description class
AbortTransactionException
class
ServiceNotKnownException
-
Uses of IlmException in de.aristaflow.ilm.core.orgmodelmanager
Subclasses of IlmException in de.aristaflow.ilm.core.orgmodelmanager Modifier and Type Class Description class
OrgModelException
class
PolicyResolutionException
-
Uses of IlmException in de.aristaflow.ilm.core.resmodelmanager
Subclasses of IlmException in de.aristaflow.ilm.core.resmodelmanager Modifier and Type Class Description class
XPathEvaluationException
-
Uses of IlmException in de.aristaflow.ilm.model.common
Subclasses of IlmException in de.aristaflow.ilm.model.common Modifier and Type Class Description class
DataConsistencyException
-
Uses of IlmException in de.aristaflow.ilm.model.datamanagement
Subclasses of IlmException in de.aristaflow.ilm.model.datamanagement Modifier and Type Class Description class
InvalidDataContainerException
-
Uses of IlmException in de.aristaflow.ilm.model.execution
Subclasses of IlmException in de.aristaflow.ilm.model.execution Modifier and Type Class Description class
AgentUnknownException
class
InvalidActivityStateException
class
WrongAgentException
Fields in de.aristaflow.ilm.model.execution declared as IlmException Modifier and Type Field Description @Valid IlmException
ExecutionContextResponse. exception
-
Uses of IlmException in de.aristaflow.ilm.model.processmodel
Subclasses of IlmException in de.aristaflow.ilm.model.processmodel Modifier and Type Class Description class
InvalidInstanceStateException
class
InvalidTemplateStateException
-
Uses of IlmException in de.aristaflow.ilm.model.runtimeenvironment
Subclasses of IlmException in de.aristaflow.ilm.model.runtimeenvironment Modifier and Type Class Description class
UnknownSessionException
class
WrongRuntimeManagerException
Fields in de.aristaflow.ilm.model.runtimeenvironment declared as IlmException Modifier and Type Field Description @Valid IlmException
SessionContextResponse. exception
-
Uses of IlmException in de.aristaflow.ilm.model.runtimeenvironment.guicontext
Subclasses of IlmException in de.aristaflow.ilm.model.runtimeenvironment.guicontext Modifier and Type Class Description class
IncompatibleGuiContextException
A specific exception indicating that aGUIContext
cannot be converted to an ILM compatible one. -
Uses of IlmException in de.aristaflow.ilm.model.scripts
Subclasses of IlmException in de.aristaflow.ilm.model.scripts Modifier and Type Class Description class
ScriptEnvironmentException
class
ScriptEvaluationException
class
ScriptException
-
Uses of IlmException in de.aristaflow.ilm.util
Subclasses of IlmException in de.aristaflow.ilm.util Modifier and Type Class Description class
DataSourceException
class
InterruptException
Renamed to avoid naming conflicts withjava.lang.InterruptedException
when used without package.class
LockException
class
ParameterException
This exception is used for problems with request parameters.class
ParameterMissingException
This exception is used for a missing request parameter.class
ParameterTypeException
This exception is used for request parameters having the wrong type.class
PlainTextException
This exception is used for exceptional responses containing content oftext type
.class
WrappingException
This class is a generic exception that wraps arbitrary exceptions which are not represented as subclasses ofIlmException
.Methods in de.aristaflow.ilm.util that return IlmException Modifier and Type Method Description static IlmException
Transformation. toIlm(Throwable t)
Creates a newIlmException
that is closest to the designated throwable.Methods in de.aristaflow.ilm.util with parameters of type IlmException Modifier and Type Method Description static <T extends Throwable>
TTransformation. fromIlm(IlmException ilm, T af)
Takes over the stack trace and the cause (if available) from the designated ilm exception to the designated throwable. -
Uses of IlmException in de.aristaflow.ilm.ws.rest.base.service
Fields in de.aristaflow.ilm.ws.rest.base.service with type parameters of type IlmException Modifier and Type Field Description protected Map<javax.ws.rs.core.Response.Status.Family,Pair<Boolean,Class<? extends IlmException>>>
AbstractRestStub.Request. excpRespFamily
The expected exceptional responses for specific status families.protected Map<javax.ws.rs.core.Response.StatusType,Pair<Boolean,Class<? extends IlmException>>>
AbstractRestStub.Request. excpRespStatus
The expected exceptional responses for specific status types.Methods in de.aristaflow.ilm.ws.rest.base.service that return IlmException Modifier and Type Method Description protected IlmException
AbstractRestStub.Request. readExceptionalBody(URL url, int respCode, boolean excpCode, String respMsg, InputStream respBody, Charset charset, String expType)
Tries to read an exception body from the response of the designated URL having the designated (exceptional) response code and message.IlmException
ExceptionHandling. wrapUnexpectedException(Throwable cause)
Method parameters in de.aristaflow.ilm.ws.rest.base.service with type arguments of type IlmException Modifier and Type Method Description AbstractRestStub.Request
AbstractRestStub.Request. addExceptionalResponse(javax.ws.rs.core.Response.Status.Family family, boolean allowPlainText, Class<? extends IlmException> excpClass)
Adds the designated response status and the class as expected exception.AbstractRestStub.Request
AbstractRestStub.Request. addExceptionalResponse(javax.ws.rs.core.Response.StatusType status, boolean allowPlainText, Class<? extends IlmException> excpClass)
Adds the designated response status and the class as expected exception.Methods in de.aristaflow.ilm.ws.rest.base.service that throw IlmException Modifier and Type Method Description protected <T> T
AbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, boolean allowPlainText, Class<T> expType)
Gets the response (body) for this request.protected <T> T
AbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, boolean allowPlainText, String expTypeName, Function<InputStream,Pair<T,IOException>> readValue)
Gets the response (body) for this request.<T> T
AbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, com.fasterxml.jackson.core.type.TypeReference<T> expType)
Gets the response (body) for this request.<T> T
AbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, Class<T> expType)
Gets the response (body) for this request.String
AbstractRestStub.Request. getStringResponse(javax.ws.rs.core.Response.StatusType expStatus)
Gets the string response for this request.void
AbstractRestStub.Request. getVoidResponse()
Just waits for the void response, i. e.
-