com.niggle.data
Class UnsetDataException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--com.niggle.data.DataException
                          |
                          +--com.niggle.data.UnsetDataException
All Implemented Interfaces:
java.io.Serializable

public class UnsetDataException
extends DataException

Thrown when an attempt is made to retrieve a data element that has not been set.

Author:
Paul Murphy
See Also:
Serialized Form

Constructor Summary
UnsetDataException(Record record, java.lang.String s)
           
UnsetDataException(java.lang.String s)
          Constructs a UnsetDataException with a detail message.
 
Methods inherited from class com.niggle.data.DataException
getLocalizedMessage, getNestedException, getRecord, setRecord
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnsetDataException

public UnsetDataException(java.lang.String s)
Constructs a UnsetDataException with a detail message.
Parameters:
s - the detail message string.

UnsetDataException

public UnsetDataException(Record record,
                          java.lang.String s)