Uses of Class
de.aristaflow.ilm.util.IlmException
Packages that use IlmException
Package
Description
-
Uses of IlmException in de.aristaflow.ilm.base.configuration
Subclasses of IlmException in de.aristaflow.ilm.base.configuration -
Uses of IlmException in de.aristaflow.ilm.base.security
Subclasses of IlmException in de.aristaflow.ilm.base.security -
Uses of IlmException in de.aristaflow.ilm.base.service
Subclasses of IlmException in de.aristaflow.ilm.base.service -
Uses of IlmException in de.aristaflow.ilm.core.orgmodelmanager
Subclasses of IlmException in de.aristaflow.ilm.core.orgmodelmanager -
Uses of IlmException in de.aristaflow.ilm.core.resmodelmanager
Subclasses of IlmException in de.aristaflow.ilm.core.resmodelmanager -
Uses of IlmException in de.aristaflow.ilm.model.common
Subclasses of IlmException in de.aristaflow.ilm.model.common -
Uses of IlmException in de.aristaflow.ilm.model.datamanagement
Subclasses of IlmException in de.aristaflow.ilm.model.datamanagementModifier and TypeClassDescriptionclassclass -
Uses of IlmException in de.aristaflow.ilm.model.execution
Subclasses of IlmException in de.aristaflow.ilm.model.executionModifier and TypeClassDescriptionclassclassclassFields in de.aristaflow.ilm.model.execution declared as IlmException -
Uses of IlmException in de.aristaflow.ilm.model.processmodel
Subclasses of IlmException in de.aristaflow.ilm.model.processmodelModifier and TypeClassDescriptionclassclass -
Uses of IlmException in de.aristaflow.ilm.model.runtimeenvironment
Subclasses of IlmException in de.aristaflow.ilm.model.runtimeenvironmentModifier and TypeClassDescriptionclassclassFields in de.aristaflow.ilm.model.runtimeenvironment declared as IlmException -
Uses of IlmException in de.aristaflow.ilm.model.runtimeenvironment.guicontext
Subclasses of IlmException in de.aristaflow.ilm.model.runtimeenvironment.guicontextModifier and TypeClassDescriptionclassA specific exception indicating that aGUIContextcannot be converted to an ILM compatible one. -
Uses of IlmException in de.aristaflow.ilm.model.scripts
Subclasses of IlmException in de.aristaflow.ilm.model.scriptsModifier and TypeClassDescriptionclassclassclass -
Uses of IlmException in de.aristaflow.ilm.model.worklistmodel
Subclasses of IlmException in de.aristaflow.ilm.model.worklistmodel -
Uses of IlmException in de.aristaflow.ilm.util
Subclasses of IlmException in de.aristaflow.ilm.utilModifier and TypeClassDescriptionclassclassRenamed to avoid naming conflicts withjava.lang.InterruptedExceptionwhen used without package.classclassThis exception is used for problems with request parameters.classThis exception is used for a missing request parameter.classThis exception is used for request parameters having the wrong type.classThis exception is used for exceptional responses containing content oftext type.classThis class is a generic exception that wraps arbitrary exceptions which are not represented as subclasses ofIlmException.Methods in de.aristaflow.ilm.util that return IlmExceptionModifier and TypeMethodDescriptionstatic IlmExceptionCreates a newIlmExceptionthat is closest to the designated throwable.Methods in de.aristaflow.ilm.util with parameters of type IlmExceptionModifier and TypeMethodDescriptionstatic <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 IlmExceptionModifier and TypeFieldDescriptionprotected final Map<jakarta.ws.rs.core.Response.Status.Family,Pair<Boolean, Class<? extends IlmException>>> AbstractRestStub.Request.excpRespFamilyThe expected exceptional responses for specific status families.protected final Map<jakarta.ws.rs.core.Response.StatusType,Pair<Boolean, Class<? extends IlmException>>> AbstractRestStub.Request.excpRespStatusThe expected exceptional responses for specific status types.Methods in de.aristaflow.ilm.ws.rest.base.service that return IlmExceptionModifier and TypeMethodDescriptionprotected IlmExceptionAbstractRestStub.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.ExceptionHandling.wrapUnexpectedException(Throwable cause) Method parameters in de.aristaflow.ilm.ws.rest.base.service with type arguments of type IlmExceptionModifier and TypeMethodDescriptionAbstractRestStub.Request.addExceptionalResponse(jakarta.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.addExceptionalResponse(jakarta.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 IlmExceptionModifier and TypeMethodDescriptionprotected <T> TAbstractRestStub.Request.getResponse(jakarta.ws.rs.core.Response.StatusType expStatus, boolean allowPlainText, Class<T> expType) Gets the response (body) for this request.protected <T> TAbstractRestStub.Request.getResponse(jakarta.ws.rs.core.Response.StatusType expStatus, boolean allowPlainText, String expTypeName, Function<InputStream, Pair<T, IOException>> readValue) Gets the response (body) for this request.<T> TAbstractRestStub.Request.getResponse(jakarta.ws.rs.core.Response.StatusType expStatus, com.fasterxml.jackson.core.type.TypeReference<T> expType) Gets the response (body) for this request.<T> TAbstractRestStub.Request.getResponse(jakarta.ws.rs.core.Response.StatusType expStatus, Class<T> expType) Gets the response (body) for this request.AbstractRestStub.Request.getStringResponse(jakarta.ws.rs.core.Response.StatusType expStatus) Gets the string response for this request.voidAbstractRestStub.Request.getVoidResponse()Just waits for the void response, i.