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

UnsupportedVariantTypeException

public abstract class UnsupportedVariantTypeException extends VariantTypeException

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 {@link VariantTypeException#getValue} method.

Obviously this class should disappear some day.

author
Rainer Klute <klute@rainer-klute.de>
since
2003-08-05
version
$Id: UnsupportedVariantTypeException.java 489730 2006-12-22 19:18:16Z bayard $

Fields Summary
Constructors Summary
public UnsupportedVariantTypeException(long variantType, Object value)

Constructor.

param
variantType The unsupported variant type
param
value The value who's variant type is not yet supported

        super(variantType, value,
              "HPSF does not yet support the variant type " + variantType + 
              " (" + Variant.getVariantName(variantType) + ", " +
              HexDump.toHex(variantType) + "). If you want support for " +
              "this variant type in one of the next POI releases please " +
              "submit a request for enhancement (RFE) to " +
              "<http://issues.apache.org/bugzilla/>! Thank you!");
    
Methods Summary