Package com.mycompany.myproject.capi
Class NoVowelException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xins.common.service.CallException
-
- org.xins.client.XINSCallException
-
- org.xins.client.UnsuccessfulXINSCallException
-
- org.xins.client.AbstractCAPIErrorCodeException
-
- com.mycompany.myproject.capi.NoVowelException
-
- All Implemented Interfaces:
java.io.Serializable
,XINSCallResultData
public final class NoVowelException extends AbstractCAPIErrorCodeException
Exception that represents the NoVowel error code.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoVowelException(XINSCallRequest request, TargetDescriptor target, long duration, XINSCallResultData resultData)
Constructs a newNoVowelException
instance.
-
Method Summary
-
Methods inherited from class org.xins.client.UnsuccessfulXINSCallException
getDataElement, getErrorCode, getParameter, getParameters, getType
-
Methods inherited from class org.xins.common.service.CallException
getDetail, getDuration, getMessage, getNext, getRequest, getTarget, isFailOverAllowed
-
-
-
-
Constructor Detail
-
NoVowelException
public NoVowelException(XINSCallRequest request, TargetDescriptor target, long duration, XINSCallResultData resultData) throws java.lang.IllegalArgumentException
Constructs a newNoVowelException
instance.This constructor is internal to XINS. Please do not use it directly. It should only be used by the generated classes. Note that this constructor may be removed at any point in time.
- Parameters:
request
- the original request, cannot benull
.target
- descriptor for the target that was attempted to be called, cannot benull
.duration
- the call duration in milliseconds, must be >= 0.resultData
- the result data, cannot benull
.- Throws:
java.lang.IllegalArgumentException
- ifrequest == null || target == null || duration < 0 || resultData == null || resultData.
.getErrorCode()
== null
-
-