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

Quick Search    Search Deep

org.eclipse.core.runtime
Class CoreException  view CoreException download CoreException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.eclipse.core.runtime.CoreException
All Implemented Interfaces:
java.io.Serializable

public class CoreException
extends java.lang.Exception

A checked exception representing a failure.

Core exceptions contain a status object describing the cause of the exception.


Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
private  IStatus status
          Status object.
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
CoreException(IStatus status)
          Creates a new exception with the given status object.
 
Method Summary
 IStatus getStatus()
          Returns the status object for this exception.
 void printStackTrace()
          Prints a stack trace out for the exception, and any nested exception that it may have embedded in its Status object.
 void printStackTrace(java.io.PrintStream output)
          Prints a stack trace out for the exception, and any nested exception that it may have embedded in its Status object.
 void printStackTrace(java.io.PrintWriter output)
          Prints a stack trace out for the exception, and any nested exception that it may have embedded in its Status object.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

status

private IStatus status
Status object.

Constructor Detail

CoreException

public CoreException(IStatus status)
Creates a new exception with the given status object. The message of the given status is used as the exception message.

Method Detail

getStatus

public final IStatus getStatus()
Returns the status object for this exception.


printStackTrace

public void printStackTrace()
Prints a stack trace out for the exception, and any nested exception that it may have embedded in its Status object.


printStackTrace

public void printStackTrace(java.io.PrintStream output)
Prints a stack trace out for the exception, and any nested exception that it may have embedded in its Status object.


printStackTrace

public void printStackTrace(java.io.PrintWriter output)
Prints a stack trace out for the exception, and any nested exception that it may have embedded in its Status object.