Package javax.jms
Class InvalidDestinationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.jms.JMSException
-
- javax.jms.InvalidDestinationException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidDestinationException extends JMSException
This exception must be thrown when a destination either is not understood by a provider or is no longer valid.
- Since:
- JMS 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidDestinationException(java.lang.String reason)
Constructs anInvalidDestinationException
with the specified reason.InvalidDestinationException(java.lang.String reason, java.lang.String errorCode)
Constructs anInvalidDestinationException
with the specified reason and error code.
-
Method Summary
-
Methods inherited from class javax.jms.JMSException
getErrorCode, getLinkedException, setLinkedException
-
-
-
-
Constructor Detail
-
InvalidDestinationException
public InvalidDestinationException(java.lang.String reason, java.lang.String errorCode)
Constructs anInvalidDestinationException
with the specified reason and error code.- Parameters:
reason
- a description of the exceptionerrorCode
- a string specifying the vendor-specific error code
-
InvalidDestinationException
public InvalidDestinationException(java.lang.String reason)
Constructs anInvalidDestinationException
with the specified reason. The error code defaults to null.- Parameters:
reason
- a description of the exception
-
-