FileDocCategorySizeDatePackage
InvalidPropertyException.javaAPI DocGlassfish v2 API3947Fri May 04 22:35:36 BST 2007javax.resource.spi

InvalidPropertyException

public class InvalidPropertyException extends javax.resource.ResourceException
This exception is thrown to indicate invalid configuration property settings.
version
0.2
author
Ram Jeyaraman

Fields Summary
private PropertyDescriptor[]
invalidProperties
Constructors Summary
public InvalidPropertyException()
Create a InvalidPropertyException.

	super();
    
public InvalidPropertyException(String message)
Create a InvalidPropertyException.

param
message a description of the exception

	super(message);
    
public InvalidPropertyException(Throwable cause)
Constructs a new throwable with the specified cause.

param
cause a chained exception of type Throwable.

	super(cause);
    
public InvalidPropertyException(String message, Throwable cause)
Constructs a new throwable with the specified detail message and cause.

param
message the detail message.
param
cause a chained exception of type Throwable.

	super(message, cause);
    
public InvalidPropertyException(String message, String errorCode)
Constructs a new throwable with the specified detail message and an error code.

param
message a description of the exception.
param
errorCode a string specifying the vendor specific error code.

	super(message, errorCode);
    
Methods Summary
public java.beans.PropertyDescriptor[]getInvalidPropertyDescriptors()
Get the list of invalid properties.

        return this.invalidProperties;
    
public voidsetInvalidPropertyDescriptors(java.beans.PropertyDescriptor[] invalidProperties)
Set a list of invalid properties.

	this.invalidProperties = invalidProperties;