netx.jnlp
Class LaunchException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--netx.jnlp.LaunchException
All Implemented Interfaces:
java.io.Serializable

public class LaunchException
extends java.lang.Exception

Thrown when a JNLP application, applet, or installer could not be created.

Version:
$Revision: 1.6 $
Author:
Jon A. Maxwell (JAM) - initial author
See Also:
Serialized Form

Constructor Summary
LaunchException()
          Creates a LaunchException without detail message.
LaunchException(java.lang.String message)
          Constructs a LaunchException with the specified detail message.
LaunchException(java.lang.String message, java.lang.Throwable cause)
          Creates a LaunchException with a cause and detail message
LaunchException(java.lang.Throwable cause)
          Creates a LaunchException with a cause.
 
Method Summary
 void printStackTrace(java.io.PrintStream stream)
          Print the stack trace and the cause exception (1.3 compatible)
 void printStackTrace(java.io.PrintWriter stream)
          Print the stack trace and the cause exception (1.3 compatible)
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LaunchException

public LaunchException()
Creates a LaunchException without detail message.

LaunchException

public LaunchException(java.lang.Throwable cause)
Creates a LaunchException with a cause.

LaunchException

public LaunchException(java.lang.String message,
                       java.lang.Throwable cause)
Creates a LaunchException with a cause and detail message

LaunchException

public LaunchException(java.lang.String message)
Constructs a LaunchException with the specified detail message.
Parameters:
message - the detail message
Method Detail

printStackTrace

public void printStackTrace(java.io.PrintStream stream)
Print the stack trace and the cause exception (1.3 compatible)
Overrides:
printStackTrace in class java.lang.Throwable

printStackTrace

public void printStackTrace(java.io.PrintWriter stream)
Print the stack trace and the cause exception (1.3 compatible)
Overrides:
printStackTrace in class java.lang.Throwable