public class HSSFUserException
extends java.lang.Exception
This exception is provided as a way for API users to throw exceptions from their event handling code. By doing so they abort file processing by the HSSFEventFactory and by catching it from outside the HSSFEventFactory.processEvents method they can diagnose the cause for the abort.
The HSSFUserException supports a nested "reason" throwable, i.e. an exception that caused this one to be thrown.
The HSSF package does not itself throw any of these exceptions.
Constructor and Description |
---|
HSSFUserException()
Creates a new
HSSFUserException . |
HSSFUserException(java.lang.String msg)
Creates a new
HSSFUserException with a message
string. |
HSSFUserException(java.lang.String msg,
java.lang.Throwable reason)
Creates a new
HSSFUserException with a message string
and a reason. |
HSSFUserException(java.lang.Throwable reason)
Creates a new
HSSFUserException with a reason. |
Modifier and Type | Method and Description |
---|---|
java.lang.Throwable |
getReason()
Returns the
Throwable that caused this exception to
be thrown or null if there was no such Throwable . |
public HSSFUserException()
Creates a new HSSFUserException
.
public HSSFUserException(java.lang.String msg)
Creates a new HSSFUserException
with a message
string.
public HSSFUserException(java.lang.Throwable reason)
Creates a new HSSFUserException
with a reason.
public HSSFUserException(java.lang.String msg, java.lang.Throwable reason)
Creates a new HSSFUserException
with a message string
and a reason.
Copyright © 2005-2010 Potix Corporation. All Rights Reserved.