Class MxConnIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.di.connector.maximo.exception.MxConnectorException
-
- com.ibm.di.connector.maximo.exception.MxConnIOException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
MxConnHttpException
,MxConnTimeoutException
public class MxConnIOException extends MxConnectorException
TPAE IF Connector's IO exception. Thrown to indicate any sort of communication problem in the connector.- Since:
- 7.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MxConnIOException(java.lang.String msg, java.lang.String targetUrl, java.lang.Object... msgArgs)
Constructs a newMxConnIOException
with the specified detail message, target URL and its arguments.MxConnIOException(java.lang.String msg, java.lang.String targetUrl, java.lang.Throwable cause, java.lang.Object... msgArgs)
Constructs a newMxConnIOException
with the specified detail message, target URL and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getTargetUrl()
Returns the target URL that causes the exception.-
Methods inherited from class com.ibm.di.connector.maximo.exception.MxConnectorException
getMsgArgs
-
-
-
-
Constructor Detail
-
MxConnIOException
public MxConnIOException(java.lang.String msg, java.lang.String targetUrl, java.lang.Object... msgArgs)
Constructs a newMxConnIOException
with the specified detail message, target URL and its arguments.- Parameters:
msg
- the detail messagetargetUrl
- target URL that causes the exceptionmsgArgs
- arguments used to compound the specified message
-
MxConnIOException
public MxConnIOException(java.lang.String msg, java.lang.String targetUrl, java.lang.Throwable cause, java.lang.Object... msgArgs)
Constructs a newMxConnIOException
with the specified detail message, target URL and cause.- Parameters:
msg
- the detail messagetargetUrl
- target URL that causes the exceptioncause
- the causemsgArgs
- arguments used to compound the specified message
-
-