Package org.apache.poi.hpsf
Class VariantTypeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.poi.hpsf.HPSFException
-
- org.apache.poi.hpsf.VariantTypeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
IllegalVariantTypeException
,UnsupportedVariantTypeException
public abstract class VariantTypeException extends HPSFException
This exception is thrown if HPSF encounters a problem with a variant type. Concrete subclasses specifiy the problem further.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VariantTypeException(long variantType, Object value, String msg)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getValue()
Returns the value who's variant type caused the problem.long
getVariantType()
Returns the offending variant type.-
Methods inherited from class org.apache.poi.hpsf.HPSFException
getReason
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getVariantType
public long getVariantType()
Returns the offending variant type.
- Returns:
- the offending variant type.
-
getValue
public Object getValue()
Returns the value who's variant type caused the problem.
- Returns:
- the value who's variant type caused the problem
-
-