Package com.sun.messaging
Class InvalidPropertyValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.jms.JMSException
com.sun.messaging.InvalidPropertyValueException
- All Implemented Interfaces:
Serializable
public class InvalidPropertyValueException
extends jakarta.jms.JMSException
An
InvalidPropertyValueException
is thrown when setProperty is called with an invalid property value
parameter.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidPropertyValueException
(String name, String value) Constructs an InvalidPropertyValueException. -
Method Summary
Methods inherited from class jakarta.jms.JMSException
getErrorCode, getLinkedException, setLinkedException
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidPropertyValueException
Constructs an InvalidPropertyValueException.The exception message is formatted as
name=value
- Parameters:
name
- The property name.value
- The invalid property value.
-