com.niggle.data
Class MissingRecordException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--com.niggle.data.DataException
|
+--com.niggle.data.MissingRecordException
- All Implemented Interfaces:
- java.io.Serializable
- public class MissingRecordException
- extends DataException
Thrown when a client tries to modify a record that has already been
deleted. Can often be safely ignored if the application does not
consider this an error.
- Author:
- Jonathan Revusky
- See Also:
- Serialized Form
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 |
MissingRecordException
public MissingRecordException()
- Constructs a MissingRecordException without a detail message.
MissingRecordException
public MissingRecordException(java.lang.String s)
MissingRecordException
public MissingRecordException(Record record,
java.lang.String s)
- Constructs a MissingRecordException with a detail message.
- Parameters:
record
- The record (likely deleted) that is relevant. May well be null.s
- the detail message string.