Package com.sun.messaging.jms
Class MQInvalidDestinationRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.jms.JMSRuntimeException
-
- jakarta.jms.InvalidDestinationRuntimeException
-
- com.sun.messaging.jms.MQInvalidDestinationRuntimeException
-
- All Implemented Interfaces:
com.sun.messaging.jmq.jmsclient.logging.Loggable
,java.io.Serializable
public class MQInvalidDestinationRuntimeException extends jakarta.jms.InvalidDestinationRuntimeException implements com.sun.messaging.jmq.jmsclient.logging.Loggable
This class is the MQ-specific implementation of jakarta.jms.InvalidDestinationRuntimeException and adds the methods setLogState and getlogState- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MQInvalidDestinationRuntimeException(jakarta.jms.InvalidDestinationException cause)
Construct aMQInvalidDestinationRuntimeException
to wrap the specified InvalidDestinationExceptionMQInvalidDestinationRuntimeException(java.lang.String detailMessage)
Constructs aMQInvalidDestinationRuntimeException
with the specified detail messageMQInvalidDestinationRuntimeException(java.lang.String detailMessage, java.lang.String errorCode)
Constructs aMQInvalidDestinationRuntimeException
with the specified detail message and error code.MQInvalidDestinationRuntimeException(java.lang.String detailMessage, java.lang.String errorCode, java.lang.Throwable cause)
Constructs aMQInvalidDestinationRuntimeException
with the specified detail message, error code and cause
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getLogState()
return whether this object is loggedvoid
setLogState(boolean state)
Specify whether this object is logged.
-
-
-
Constructor Detail
-
MQInvalidDestinationRuntimeException
public MQInvalidDestinationRuntimeException(java.lang.String detailMessage)
Constructs aMQInvalidDestinationRuntimeException
with the specified detail message- Parameters:
detailMessage
- a description of the exception
-
MQInvalidDestinationRuntimeException
public MQInvalidDestinationRuntimeException(java.lang.String detailMessage, java.lang.String errorCode)
Constructs aMQInvalidDestinationRuntimeException
with the specified detail message and error code.- Parameters:
detailMessage
- a description of the exceptionerrorCode
- a provider-specific error code
-
MQInvalidDestinationRuntimeException
public MQInvalidDestinationRuntimeException(java.lang.String detailMessage, java.lang.String errorCode, java.lang.Throwable cause)
Constructs aMQInvalidDestinationRuntimeException
with the specified detail message, error code and cause- Parameters:
detailMessage
- a description of the exceptionerrorCode
- a provider-specific error codecause
- the underlying cause of this exception
-
MQInvalidDestinationRuntimeException
public MQInvalidDestinationRuntimeException(jakarta.jms.InvalidDestinationException cause)
Construct aMQInvalidDestinationRuntimeException
to wrap the specified InvalidDestinationException- Parameters:
cause
- the underlying cause of this exception
-
-
Method Detail
-
setLogState
public void setLogState(boolean state)
Specify whether this object is logged.- Specified by:
setLogState
in interfacecom.sun.messaging.jmq.jmsclient.logging.Loggable
- Parameters:
state
- whether this object is logged
-
getLogState
public boolean getLogState()
return whether this object is logged- Specified by:
getLogState
in interfacecom.sun.messaging.jmq.jmsclient.logging.Loggable
- Returns:
- whether this object is logged
-
-