nenok.lc
Class LCException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by java.rmi.RemoteException
                  extended by nenok.lc.LCException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConstrException, VAException

public class LCException
extends RemoteException

This class represents exceptions occuring during local computation. In Nenok, this exception class acts as a base class abstracting other more detailled exceptions. LCException stands for Local Computation Exception.

Version:
$LastChangedRevision: 557 $
$LastChangedDate: 2008-03-26 14:23:32 +0100 (Mi, 26 Mrz 2008) $
Author:
Marc Pouly
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.rmi.RemoteException
detail
 
Constructor Summary
LCException(String message)
          Constructor:
LCException(String message, Throwable cause)
          Constructor:
LCException(Throwable cause)
          Constructor:
 
Method Summary
 
Methods inherited from class java.rmi.RemoteException
getCause, getMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LCException

public LCException(String message)
Constructor:

Parameters:
message - The exception message.

LCException

public LCException(String message,
                   Throwable cause)
Constructor:

Parameters:
message - The exception message.
cause - The (prior) exception to be wrapped.

LCException

public LCException(Throwable cause)
Constructor:

Parameters:
cause - The (prior) exception to be wrapped.