com.ibm.broker.plugin
Class MbUserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.broker.plugin.MbException
-
- com.ibm.broker.plugin.MbRecoverableException
-
- com.ibm.broker.plugin.MbUserException
-
- All Implemented Interfaces:
- java.io.Serializable
public class MbUserException extends MbRecoverableException
These are generated when a Throw node throws a user-defined exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description MbUserException(java.lang.Object source, java.lang.String methodName, java.lang.String messageSource, java.lang.String messageKey, java.lang.String traceText, java.lang.Object[] inserts)MbUserException(java.lang.String className, java.lang.String methodName, java.lang.String messageSource, java.lang.String messageKey, java.lang.String traceText, java.lang.Object[] inserts)These are generated when a Throw node throws a user-defined exception.
-
Method Summary
-
Methods inherited from class com.ibm.broker.plugin.MbException
addNestedException, getClassName, getInserts, getLocalizedMessage, getMessage, getMessageKey, getMessageSource, getMethodName, getNestedExceptions, getTraceText, toString
-
-
-
-
Constructor Detail
-
MbUserException
public MbUserException(java.lang.String className, java.lang.String methodName, java.lang.String messageSource, java.lang.String messageKey, java.lang.String traceText, java.lang.Object[] inserts)These are generated when a Throw node throws a user-defined exception.- Parameters:
className- Class which generated the exception.methodName- Method which generated the exception.messageSource- Source of the message in the exception.messageKey- Key to the message in the exception.traceText- Extra text for the message.inserts- Array of java Objects which are inserts for the message.
-
MbUserException
public MbUserException(java.lang.Object source, java.lang.String methodName, java.lang.String messageSource, java.lang.String messageKey, java.lang.String traceText, java.lang.Object[] inserts)- Parameters:
source- The object which generated the exception.methodName- Method which generated the exception.messageSource- Source of the message in the exception.messageKey- Key to the message in the exception.traceText- Extra text for the message.inserts- Array of java Objects which are inserts for the message.
-
-