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

NoSingleSectionException

public class NoSingleSectionException extends HPSFRuntimeException

This exception is thrown if one of the {@link PropertySet}'s convenience methods that require a single {@link Section} is called and the {@link PropertySet} does not contain exactly one {@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 489730 2006-12-22 19:18:16Z bayard $
since
2002-02-09

Fields Summary
Constructors Summary
public NoSingleSectionException()

Constructor

        super();
    
public NoSingleSectionException(String msg)

Constructor

param
msg The exception's message string

        super(msg);
    
public NoSingleSectionException(Throwable reason)

Constructor

param
reason This exception's underlying reason

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

Constructor

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

        super(msg, reason);
    
Methods Summary