Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.lutris.util
Class FatalExceptionError  view FatalExceptionError download FatalExceptionError.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Error
          extended bycom.lutris.util.FatalExceptionError
All Implemented Interfaces:
java.io.Serializable

public class FatalExceptionError
extends java.lang.Error


Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
(package private)  java.lang.Exception except
          Encapsulated exception.
 
Fields inherited from class java.lang.Error
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
FatalExceptionError(java.lang.Exception except)
          Constucts with an existing exception or error.
 
Method Summary
 java.lang.Exception getException()
          Get the exception that occured.
 java.lang.String getLocalizedMessage()
          Get the localized message of the encapsulate exception.
 java.lang.String getMessage()
          Get the detail message of the encapsulate exception.
 void printStackTrace()
          Call the encapsulated object printStackTrack method with output to the standard error string.
 void printStackTrace(java.io.PrintStream str)
          Call the encapsulated object printStackTrack method with output to a specified stream.
 void printStackTrace(java.io.PrintWriter pw)
          Call the encapsulated object printStackTrack method with output to a specified stream print writer.
 java.lang.String toString()
          Returns a string representation that includes this object and the encapsulated object.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

except

java.lang.Exception except
Encapsulated exception.

Constructor Detail

FatalExceptionError

public FatalExceptionError(java.lang.Exception except)
Constucts with an existing exception or error.

Method Detail

getException

public java.lang.Exception getException()
Get the exception that occured.


getMessage

public java.lang.String getMessage()
Get the detail message of the encapsulate exception.


getLocalizedMessage

public java.lang.String getLocalizedMessage()
Get the localized message of the encapsulate exception.


toString

public java.lang.String toString()
Returns a string representation that includes this object and the encapsulated object.


printStackTrace

public void printStackTrace()
Call the encapsulated object printStackTrack method with output to the standard error string.


printStackTrace

public void printStackTrace(java.io.PrintStream str)
Call the encapsulated object printStackTrack method with output to a specified stream.


printStackTrace

public void printStackTrace(java.io.PrintWriter pw)
Call the encapsulated object printStackTrack method with output to a specified stream print writer.