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

NoFormatIDException

public class NoFormatIDException extends HPSFRuntimeException

This exception is thrown if a {@link MutablePropertySet} is to be written but does not have a formatID set (see {@link MutableSection#setFormatID(ClassID)} or {@link org.apache.poi.hpsf.MutableSection#setFormatID(byte[])}.

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

Fields Summary
Constructors Summary
public NoFormatIDException()

Constructor

        super();
    
public NoFormatIDException(String msg)

Constructor

param
msg The exception's message string

        super(msg);
    
public NoFormatIDException(Throwable reason)

Constructor

param
reason This exception's underlying reason

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

Constructor

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

        super(msg, reason);
    
Methods Summary