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

NoPropertySetStreamException

public class NoPropertySetStreamException extends HPSFException

This exception is thrown if a format error in a property set stream is detected or when the input data do not constitute a property set stream.

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

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

Fields Summary
Constructors Summary
public NoPropertySetStreamException()

Constructor

        super();
    
public NoPropertySetStreamException(String msg)

Constructor

param
msg The exception's message string

        super(msg);
    
public NoPropertySetStreamException(Throwable reason)

Constructor

param
reason This exception's underlying reason

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

Constructor

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

        super(msg, reason);
    
Methods Summary