Package loci.poi.hpsf
Class NoFormatIDException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- loci.poi.hpsf.HPSFRuntimeException
-
- loci.poi.hpsf.NoFormatIDException
-
- All Implemented Interfaces:
Serializable
public class NoFormatIDException extends HPSFRuntimeException
This exception is thrown if a
MutablePropertySet
is to be written but does not have a formatID set (seeMutableSection.setFormatID(ClassID)
orMutableSection.setFormatID(byte[])
.- Since:
- 2002-09-03
- Version:
- $Id: NoFormatIDException.java 489730 2006-12-22 19:18:16Z bayard $
- Author:
- Rainer Klute <klute@rainer-klute.de>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoFormatIDException()
ConstructorNoFormatIDException(String msg)
ConstructorNoFormatIDException(String msg, Throwable reason)
ConstructorNoFormatIDException(Throwable reason)
Constructor
-
Method Summary
-
Methods inherited from class loci.poi.hpsf.HPSFRuntimeException
getReason, printStackTrace, printStackTrace, printStackTrace
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NoFormatIDException
public NoFormatIDException()
Constructor
-
NoFormatIDException
public NoFormatIDException(String msg)
Constructor
- Parameters:
msg
- The exception's message string
-
NoFormatIDException
public NoFormatIDException(Throwable reason)
Constructor
- Parameters:
reason
- This exception's underlying reason
-
-