org.oreodata
Class MissingDataException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--org.oreodata.DataException
                          |
                          +--org.oreodata.MissingDataException
All Implemented Interfaces:
java.io.Serializable

public class MissingDataException
extends DataException

Thrown when an attempt is made to initialize a record which is missing a required field.

Author:
Jonathan Revusky
See Also:
Serialized Form

Constructor Summary
MissingDataException(Record record, java.lang.String s)
           
MissingDataException(java.lang.String s)
          Constructs a MissingDataException with a detail message.
 
Methods inherited from class org.oreodata.DataException
getLocale, getLocalizedMessage, getNestedException, getRecord, setLocale, setRecord
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, 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

MissingDataException

public MissingDataException(java.lang.String s)
Constructs a MissingDataException with a detail message.

Parameters:
s - the detail message string.

MissingDataException

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