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

UnexpectedPropertySetTypeException

public class UnexpectedPropertySetTypeException extends HPSFException

This exception is thrown if a certain type of property set is expected (e.g. a Document Summary Information) but the provided property set is not of that type.

The constructors of this class are analogous to those of its superclass and documented there.

author
Rainer Klute <klute@rainer-klute.de>
version
$Id: UnexpectedPropertySetTypeException.java 489730 2006-12-22 19:18:16Z bayard $
since
2002-02-09

Fields Summary
Constructors Summary
public UnexpectedPropertySetTypeException()

Creates an {@link UnexpectedPropertySetTypeException}.

        super();
    
public UnexpectedPropertySetTypeException(String msg)

Creates an {@link UnexpectedPropertySetTypeException} with a message string.

param
msg The message string.

        super(msg);
    
public UnexpectedPropertySetTypeException(Throwable reason)

Creates a new {@link UnexpectedPropertySetTypeException} with a reason.

param
reason The reason, i.e. a throwable that indirectly caused this exception.

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

Creates an {@link UnexpectedPropertySetTypeException} with a message string and a reason.

param
msg The message string.
param
reason The reason, i.e. a throwable that indirectly caused this exception.

        super(msg, reason);
    
Methods Summary