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

MissingSectionException

public class MissingSectionException extends HPSFRuntimeException

This exception is thrown if one of the {@link PropertySet}'s convenience methods does not find a required {@link Section}.

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

author
Rainer Klute <klute@rainer-klute.de>
version
$Id: NoSingleSectionException.java 353545 2004-04-09 13:05:39Z glens $
since
2006-02-08

Fields Summary
Constructors Summary
public MissingSectionException()

Constructor

        super();
    
public MissingSectionException(String msg)

Constructor

param
msg The exception's message string

        super(msg);
    
public MissingSectionException(Throwable reason)

Constructor

param
reason This exception's underlying reason

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

Constructor

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

        super(msg, reason);
    
Methods Summary