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:
java.io.Serializable
public class InvalidPropertyValueException extends jakarta.jms.JMSException
AnInvalidPropertyValueException
is thrown when setProperty is called with an invalid property value parameter.- See Also:
jakarta.jms.ConnectionFactory
,com.sun.messaging.AdministeredObject.setProperty(propname, propval)
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidPropertyValueException(java.lang.String name, java.lang.String value)
Constructs an InvalidPropertyValueException.
-
Method Summary
-
Methods inherited from class jakarta.jms.JMSException
getErrorCode, getLinkedException, setLinkedException
-
-
-
-
Constructor Detail
-
InvalidPropertyValueException
public InvalidPropertyValueException(java.lang.String name, java.lang.String value)
Constructs an InvalidPropertyValueException.The exception message is formatted as
name=value
- Parameters:
name
- The property name.value
- The invalid property value.
-
-