Package org.apache.poi.hpsf
Class UnsupportedVariantTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.poi.hpsf.HPSFException
org.apache.poi.hpsf.VariantTypeException
org.apache.poi.hpsf.UnsupportedVariantTypeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ReadingNotSupportedException
,WritingNotSupportedException
This exception is thrown if HPSF encounters a variant type that isn't
supported yet. Although a variant type is unsupported the value can still be
retrieved using the VariantTypeException.getValue()
method.
Obviously this class should disappear some day.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnsupportedVariantTypeException
(long variantType, Object value) Constructor. -
Method Summary
Methods inherited from class org.apache.poi.hpsf.VariantTypeException
getValue, getVariantType
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
-
Constructor Details
-
UnsupportedVariantTypeException
Constructor.
- Parameters:
variantType
- The unsupported variant typevalue
- The value who's variant type is not yet supported
-