mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
28 lines
578 B
Java
28 lines
578 B
Java
|
|
package org.apache.poi.hpsf;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>This exception is thrown when trying to read a (yet) unsupported variant
|
||
|
|
* type.</p>
|
||
|
|
*
|
||
|
|
* @author Rainer Klute <a
|
||
|
|
* href="mailto:klute@rainer-klute.de"><klute@rainer-klute.de></a>
|
||
|
|
* @since 2003-08-08
|
||
|
|
* @version $Id$
|
||
|
|
*/
|
||
|
|
public class ReadingNotSupportedException
|
||
|
|
extends UnsupportedVariantTypeException
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>Constructor</p>
|
||
|
|
*
|
||
|
|
* @param variantType
|
||
|
|
* @param value
|
||
|
|
*/
|
||
|
|
public ReadingNotSupportedException(long variantType, Object value)
|
||
|
|
{
|
||
|
|
super(variantType, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|