| java.lang.Object java.lang.Throwable java.lang.Exception org.openlaszlo.iv.flash.util.IVException
IVException | public class IVException extends Exception (Code) | | This exception is thrown if there any errors during generation process.
The exception can be created with message from resource bundles
All messages in this file are defined by their keys which are to be used when throwing the exception.
Usage:
- wrap some other exception into IVException and rethrow it with a message from resorce and parameters:
...
} catch( IOException e ) {
throw new IVException( e, Resource.ERRCMDFILEREAD, url.getName(), getCommandName() );
}
throw new IVException( Resource.INFINITELOOP );
author: Dmitry Skavish |
Constructor Summary | |
public | IVException() | public | IVException(String key) | public | IVException(ResourceBundle bundle, String key) | public | IVException(String key, Object[] parms) | public | IVException(ResourceBundle bundle, String key, Object[] parms) | public | IVException(String key, Throwable cause) | public | IVException(ResourceBundle bundle, String key, Throwable cause) | public | IVException(String key, Object[] parms, Throwable cause) | public | IVException(ResourceBundle bundle, String key, Object[] parms, Throwable cause) | public | IVException(Throwable cause) |
IVException | public IVException()(Code) | | |
printStackTrace | public void printStackTrace(PrintStream s)(Code) | | Prints this throwable and its backtrace to the specified print stream.
Parameters: s - PrintStream to use for output |
printStackTrace | public void printStackTrace(PrintWriter s)(Code) | | Prints this throwable and its backtrace to the specified
print writer.
Parameters: s - PrintWriter to use for output since: JDK1.1 |
|
|