com.ibm.di.connector.maximo.exception
Class MxConnectorException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.ibm.di.connector.maximo.exception.MxConnectorException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MxConnIOException, MxConnSchemaException, MxConnXmlParsingException

public class MxConnectorException
extends 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
MxConnectorException(String msg, Object... msgArgs)
          Constructs a new MxConnectorException with the specified detail message and its arguments.
MxConnectorException(String msg, Throwable cause, Object... msgArgs)
          Constructs a new MxConnectorException with the specified detail message, its arguments, and cause.
 
Method Summary
 Object[] getMsgArgs()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MxConnectorException

public MxConnectorException(String msg,
                            Object... msgArgs)
Constructs a new MxConnectorException with the specified detail message and its arguments.

Parameters:
msg - the detail message
msgArgs - arguments used to compound the specified message
See Also:
Exception.Exception(String)

MxConnectorException

public MxConnectorException(String msg,
                            Throwable cause,
                            Object... msgArgs)
Constructs a new MxConnectorException with the specified detail message, its arguments, and cause.

Parameters:
msg - the detail message
cause - the cause
msgArgs - arguments used to compound the specified message
See Also:
Exception.Exception(String, Throwable)
Method Detail

getMsgArgs

public final Object[] getMsgArgs()