Package loci.poi.hpsf
Class UnexpectedPropertySetTypeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- loci.poi.hpsf.HPSFException
-
- loci.poi.hpsf.UnexpectedPropertySetTypeException
-
- All Implemented Interfaces:
Serializable
public class UnexpectedPropertySetTypeException extends HPSFException
This exception is thrown if a certain type of property set is expected (e.g. a Document Summary Information) but the provided property set is not of that type.
The constructors of this class are analogous to those of its superclass and documented there.
- Since:
- 2002-02-09
- Version:
- $Id: UnexpectedPropertySetTypeException.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 UnexpectedPropertySetTypeException()
Creates anUnexpectedPropertySetTypeException
.UnexpectedPropertySetTypeException(String msg)
Creates anUnexpectedPropertySetTypeException
with a message string.UnexpectedPropertySetTypeException(String msg, Throwable reason)
Creates anUnexpectedPropertySetTypeException
with a message string and a reason.UnexpectedPropertySetTypeException(Throwable reason)
Creates a newUnexpectedPropertySetTypeException
with a reason.
-
Method Summary
-
Methods inherited from class loci.poi.hpsf.HPSFException
getReason
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnexpectedPropertySetTypeException
public UnexpectedPropertySetTypeException()
Creates an
UnexpectedPropertySetTypeException
.
-
UnexpectedPropertySetTypeException
public UnexpectedPropertySetTypeException(String msg)
Creates an
UnexpectedPropertySetTypeException
with a message string.- Parameters:
msg
- The message string.
-
UnexpectedPropertySetTypeException
public UnexpectedPropertySetTypeException(Throwable reason)
Creates a new
UnexpectedPropertySetTypeException
with a reason.- Parameters:
reason
- The reason, i.e. a throwable that indirectly caused this exception.
-
UnexpectedPropertySetTypeException
public UnexpectedPropertySetTypeException(String msg, Throwable reason)
Creates an
UnexpectedPropertySetTypeException
with a message string and a reason.- Parameters:
msg
- The message string.reason
- The reason, i.e. a throwable that indirectly caused this exception.
-
-