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

MarkUnsupportedException

public class MarkUnsupportedException extends HPSFException

This exception is thrown if an {@link java.io.InputStream} does not support the {@link java.io.InputStream#mark} operation.

author
Rainer Klute <klute@rainer-klute.de>
version
$Id: MarkUnsupportedException.java 489730 2006-12-22 19:18:16Z bayard $
since
2002-02-09

Fields Summary
Constructors Summary
public MarkUnsupportedException()

Constructor

        super();
    
public MarkUnsupportedException(String msg)

Constructor

param
msg The exception's message string

        super(msg);
    
public MarkUnsupportedException(Throwable reason)

Constructor

param
reason This exception's underlying reason

        super(reason);
    
public MarkUnsupportedException(String msg, Throwable reason)

Constructor

param
msg The exception's message string
param
reason This exception's underlying reason

        super(msg, reason);
    
Methods Summary