com.ibm.broker.plugin
Class MbParserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.broker.plugin.MbException
-
- com.ibm.broker.plugin.MbRecoverableException
-
- com.ibm.broker.plugin.MbParserException
-
- All Implemented Interfaces:
- java.io.Serializable
public class MbParserException extends MbRecoverableException
An MbParserException is generated by message parsers for errors which prevent the parsing of the message content or creating a bit-stream. A parser exception is treated as a recoverable exception by the broker.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description MbParserException(java.lang.Object source, java.lang.String methodName, java.lang.String messageKey, java.lang.String messageSource, java.lang.String traceText, java.lang.Object[] inserts)These are generated by message parsers for errors which prevent the parsing of the message content or creating a bit-stream.MbParserException(java.lang.String className, java.lang.String methodName, java.lang.String messageKey, java.lang.String messageSource, java.lang.String traceText, java.lang.Object[] inserts)
-
Method Summary
-
Methods inherited from class com.ibm.broker.plugin.MbException
addNestedException, getClassName, getInserts, getLocalizedMessage, getMessage, getMessageKey, getMessageSource, getMethodName, getNestedExceptions, getTraceText, toString
-
-
-
-
Constructor Detail
-
MbParserException
public MbParserException(java.lang.String className, java.lang.String methodName, java.lang.String messageKey, java.lang.String messageSource, java.lang.String traceText, java.lang.Object[] inserts)- Parameters:
className- Class which generated the exception.methodName- Method which generated the exception.messageKey- Key to the message in the exception.messageSource- Source of the message in the exception.traceText- Extra text for the message.inserts- Array of java Objects which are inserts for the message.
-
MbParserException
public MbParserException(java.lang.Object source, java.lang.String methodName, java.lang.String messageKey, java.lang.String messageSource, java.lang.String traceText, java.lang.Object[] inserts)These are generated by message parsers for errors which prevent the parsing of the message content or creating a bit-stream. A parser exception is treated as a recoverable exception by the broker.- Parameters:
source- The object which generated the exception.methodName- Method which generated the exception.messageKey- Key to the message in the exception.messageSource- Source of the message in the exception.traceText- Extra text for the message.inserts- Array of java Objects which are inserts for the message.
-
-