net.fenyo.gnetwatch
Class GeneralException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by net.fenyo.gnetwatch.GeneralException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
AlgorithmException

public class GeneralException
extends java.lang.Exception

An exception for errors specific to this software.

Version:
$Id: GeneralException.java,v 1.5 2008/04/15 23:58:18 fenyo Exp $
Author:
Alexandre Fenyo
See Also:
Serialized Form

Field Summary
static long serialVersionUID
           
 
Constructor Summary
GeneralException()
          Constructor.
GeneralException(java.lang.String message)
          Constructor.
GeneralException(java.lang.String message, java.lang.Throwable cause)
          Constructor.
GeneralException(java.lang.Throwable cause)
          Constructor.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

public static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

GeneralException

public GeneralException()
Constructor. Creates a GeneralException instance.

Parameters:
none. -

GeneralException

public GeneralException(java.lang.String message)
Constructor. Creates a GeneralException instance.

Parameters:
message - message associated with this exception.
none. -

GeneralException

public GeneralException(java.lang.String message,
                        java.lang.Throwable cause)
Constructor. Creates a GeneralException instance.

Parameters:
message - message associated with this exception.
exception - exception associated with this exception.

GeneralException

public GeneralException(java.lang.Throwable cause)
Constructor. Creates a GeneralException instance.

Parameters:
exception - exception associated with this exception.