org.nsdl.mptstore.core
Class ModificationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.nsdl.mptstore.core.ModificationException
All Implemented Interfaces:
java.io.Serializable

public class ModificationException
extends java.lang.Exception

Signals an error while adding or removing triples.

Author:
cwilper@cs.cornell.edu
See Also:
Serialized Form

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

ModificationException

public ModificationException(java.lang.String message)
Construct a ModificationException with a detail message.

Parameters:
message - The detail message.

ModificationException

public ModificationException(java.lang.String message,
                             java.lang.Throwable cause)
Construct a ModificationException with a detail message and a cause.

Parameters:
message - The detail message.
cause - The underlying cause.