Package org.eclipse.ui.contexts
Class ContextException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.ui.contexts.ContextException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NotDefinedException
@Deprecated public abstract class ContextException extends Exception
Deprecated.Please use the "org.eclipse.core.commands" plug-in instead.Signals that an exception occurred within the context architecture.This class is not intended to be extended by clients.
- Since:
- 3.0
- See Also:
CommandException, Serialized Form- Restriction:
- This class is not intended to be subclassed by clients.
-
-
Constructor Summary
Constructors Constructor Description ContextException(String message)Deprecated.Creates a new instance of this class with the specified detail message.ContextException(String message, Throwable cause)Deprecated.Creates a new instance of this class with the specified detail message and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ThrowablegetCause()Deprecated.Returns the cause of this throwable ornullif the cause is nonexistent or unknown.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ContextException
public ContextException(String message)
Deprecated.Creates a new instance of this class with the specified detail message.- Parameters:
message- the detail message.
-
-