Package org.eclipse.core.databinding
Class BindingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.core.databinding.BindingException
-
- All Implemented Interfaces:
java.io.Serializable
public class BindingException extends java.lang.RuntimeExceptionAn unchecked exception indicating a binding problem.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BindingException(java.lang.String message)Creates a new BindingException with the given message.BindingException(java.lang.String message, java.lang.Throwable cause)Creates a new BindingException with the given message and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprintStackTrace(java.io.PrintStream err)voidprintStackTrace(java.io.PrintWriter err)
-
-
-
Constructor Detail
-
BindingException
public BindingException(java.lang.String message)
Creates a new BindingException with the given message.- Parameters:
message- the exceptions message
-
BindingException
public BindingException(java.lang.String message, java.lang.Throwable cause)Creates a new BindingException with the given message and cause.- Parameters:
message- the exceptions messagecause- the cause for this exception; might benull
-
-