Class MxConnectorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.di.connector.maximo.exception.MxConnectorException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
MxConnIOException
,MxConnSchemaException
,MxConnXmlParsingException
public class MxConnectorException extends java.lang.Exception
TPAE IF Connector's root exception. Thrown to indicate any sort of problem in the connector.- Since:
- 7.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MxConnectorException(java.lang.String msg, java.lang.Object... msgArgs)
Constructs a newMxConnectorException
with the specified detail message and its arguments.MxConnectorException(java.lang.String msg, java.lang.Throwable cause, java.lang.Object... msgArgs)
Constructs a newMxConnectorException
with the specified detail message, its arguments, and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object[]
getMsgArgs()
-
-
-
Constructor Detail
-
MxConnectorException
public MxConnectorException(java.lang.String msg, java.lang.Object... msgArgs)
Constructs a newMxConnectorException
with the specified detail message and its arguments.- Parameters:
msg
- the detail messagemsgArgs
- arguments used to compound the specified message- See Also:
Exception(String)
-
MxConnectorException
public MxConnectorException(java.lang.String msg, java.lang.Throwable cause, java.lang.Object... msgArgs)
Constructs a newMxConnectorException
with the specified detail message, its arguments, and cause.- Parameters:
msg
- the detail messagecause
- the causemsgArgs
- arguments used to compound the specified message- See Also:
Exception(String, Throwable)
-
-