edu.iu.iv.core.persistence
Class PersisterNotFoundException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--edu.iu.iv.core.persistence.PersistenceException
                    |
                    +--edu.iu.iv.core.persistence.PersisterNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class PersisterNotFoundException
extends PersistenceException

Signifies the exception that a Persister was not found.

Version:
0.1
Author:
Shashikant
See Also:
PersistenceRegistry.findPersister(Object, ResourceDescriptor), Serialized Form

Constructor Summary
PersisterNotFoundException()
          Constructs an exception.
PersisterNotFoundException(java.lang.String message)
          Constructs a new exception with the specified detail message.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PersisterNotFoundException

public PersisterNotFoundException()
Constructs an exception. The detail message is set to null.


PersisterNotFoundException

public PersisterNotFoundException(java.lang.String message)
Constructs a new exception with the specified detail message.

Parameters:
message - The detail message.