com.ibm.itim.dataservices.model

Class ModelCommunicationException

  • All Implemented Interfaces:
    java.io.Serializable


    public class ModelCommunicationException
    extends ModelException
    ModelCommunicationException is an exception class used for errors that arise due to communications issues. These issues may arise with any networked interface within the system.
    See Also:
    Serialized Form
    • Constructor Detail

      • ModelCommunicationException

        public ModelCommunicationException(java.lang.String message)
        Constructs an ModelCommunicationException with a message.
        Parameters:
        message - String holding a descriptive message about the exception.
      • ModelCommunicationException

        public ModelCommunicationException(java.lang.String msg,
                                           java.lang.Throwable cause)
        Constructs an ModelCommunicationException with a message and original exception.
        Parameters:
        msg - String holding a descriptive message about the exception.
        cause - The original exception that caused the problem.
      • ModelCommunicationException

        public ModelCommunicationException(java.lang.String msg,
                                           java.lang.Object[] tokenValues)
        Constructs a checked exception with a msg identifier and an array of message parameters.
        Parameters:
        msg - string identifier of error message.
        tokenValues - Object[] containing string values for replaceable tokens in the message bundle string.
      • ModelCommunicationException

        public ModelCommunicationException(java.lang.String msg,
                                           java.lang.Object[] tokenValues,
                                           java.lang.Throwable cause)
        Constructs a checked exception with a msg identifier, an array of message parameters, and the original exception or error.
        Parameters:
        msg - string identifier of error message.
        tokenValues - Object[] containing string values for replaceable tokens in the message bundle string.
        cause - originating exception or error.