org.opensolaris.opengrok.history
Class HistoryException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.opensolaris.opengrok.history.HistoryException
All Implemented Interfaces:
java.io.Serializable

public class HistoryException
extends java.lang.Exception

Exception thrown when retrieval or manipulation of history information fails.

See Also:
Serialized Form

Constructor Summary
HistoryException(java.lang.String msg)
          Construct a HistoryException with the specified message.
HistoryException(java.lang.String msg, java.lang.Throwable cause)
          Construct a HistoryException with the specified message and cause.
HistoryException(java.lang.Throwable cause)
          Construct a HistoryException with the specified cause.
 
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
 

Constructor Detail

HistoryException

public HistoryException(java.lang.String msg)
Construct a HistoryException with the specified message.

Parameters:
msg - the message string

HistoryException

public HistoryException(java.lang.Throwable cause)
Construct a HistoryException with the specified cause.

Parameters:
cause - the cause of the exception

HistoryException

public HistoryException(java.lang.String msg,
                        java.lang.Throwable cause)
Construct a HistoryException with the specified message and cause.

Parameters:
msg - the message string
cause - the cause of the exception