package org.apache.poi.hpsf; /** *
This exception is thrown when trying to read a (yet) unsupported variant * type.
* * @author Rainer Klute <klute@rainer-klute.de> * @since 2003-08-08 * @version $Id$ */ public class ReadingNotSupportedException extends UnsupportedVariantTypeException { /** *Constructor
* * @param variantType * @param value */ public ReadingNotSupportedException(long variantType, Object value) { super(variantType, value); } }