FileDocCategorySizeDatePackage
IllegalPropertySetDataException.javaAPI DocApache Poi 3.0.12438Mon Jan 01 12:39:34 GMT 2007org.apache.poi.hpsf

IllegalPropertySetDataException

public class IllegalPropertySetDataException extends HPSFRuntimeException

This exception is thrown when there is an illegal value set in a {@link PropertySet}. For example, a {@link Variant#VT_BOOL} must have a value of -1 (true) or 0 (false). Any other value would trigger this exception. It supports a nested "reason" throwable, i.e. an exception that caused this one to be thrown.

author
Drew Varner(Drew.Varner atDomain sc.edu)
version
$Id: IllegalPropertySetDataException.java 489730 2006-12-22 19:18:16Z bayard $
since
2002-05-26

Fields Summary
Constructors Summary
public IllegalPropertySetDataException()

Constructor

        super();
    
public IllegalPropertySetDataException(String msg)

Constructor

param
msg The exception's message string

        super(msg);
    
public IllegalPropertySetDataException(Throwable reason)

Constructor

param
reason This exception's underlying reason

        super(reason);
    
public IllegalPropertySetDataException(String msg, Throwable reason)

Constructor

param
msg The exception's message string
param
reason This exception's underlying reason

        super(msg, reason);
    
Methods Summary