1 16 17 package org.apache.poi.hpsf; 18 19 import org.apache.poi.util.HexDump; 20 21 33 public abstract class UnsupportedVariantTypeException 34 extends VariantTypeException 35 { 36 37 43 public UnsupportedVariantTypeException(final long variantType, 44 final Object value) 45 { 46 super(variantType, value, 47 "HPSF does not yet support the variant type " + variantType + 48 " (" + Variant.getVariantName(variantType) + ", " + 49 HexDump.toHex(variantType) + "). If you want support for " + 50 "this variant type in one of the next POI releases please " + 51 "submit a request for enhancement (RFE) to " + 52 "<http://issues.apache.org/bugzilla/>! Thank you!"); 53 } 54 55 56 57 } 58 | Popular Tags |