[all packages]
[package BR.unicamp.Guarana]
[class hierarchy]
[index]
public class BR.unicamp.Guarana.MetaException
(source file: /home/lsd/oliva/src/java/guarana/kaffe/libraries/extensions/guarana/javalib/BR/unicamp/Guarana/MetaException.java)
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----BR.unicamp.Guarana.MetaException
The pure class interface.
public class MetaException
extends RuntimeException
- This exception encapsulates any Exception that is produced by a
MetaObject or other objects it invokes while handling an
Operation.
- MetaException(Throwable, String)
- Constructs an MetaException with a detail message.
- MetaException(Throwable)
- Constructs an MetaException without a detail message.
- thrown
- The thrown value encapsulated in this Exception.
- getException()
- Obtains the Throwable that was encapsulated in the
MetaException.
- getLocalizedMessage()
- Returns the localized detail message of this MetaException.
- getMessage()
- Returns the detail message of this MetaException.
MetaException
public MetaException(Throwable thrown);
- Constructs an MetaException without a detail message.
- Parameters:
- thrown - the Throwable thrown in the meta-level.
MetaException
public MetaException(Throwable thrown,
String s);
- Constructs an MetaException with a detail message.
- Parameters:
- thrown - the Throwable thrown in the meta-level.
- s - the detail message.
thrown
public final Throwable thrown;
- The thrown value encapsulated in this Exception.
getLocalizedMessage
public String getLocalizedMessage();
- Returns the localized detail message of this MetaException.
- Returns:
- the optional detail message provided at construction
time, concatenated with the string that represents the
encapsulated exception.
- Overrides:
- getLocalizedMessage in class Throwable
getMessage
public String getMessage();
- Returns the detail message of this MetaException.
- Returns:
- the optional detail message provided at construction
time, concatenated with the string that represents the
encapsulated exception.
- Overrides:
- getMessage in class Throwable
getException
public Throwable getException();
- Obtains the Throwable that was encapsulated in the
MetaException.
- Returns:
- the Throwable.
[all packages]
[package BR.unicamp.Guarana]
[class hierarchy]
[index]
BR.unicamp.Guarana.MetaException.html