cdev.dir
Class DataNotFoundException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--cdev.dir.DataNotFoundException
Direct Known Subclasses:
BadConnectionException, BadQueryException, NoSuchDataException, TooManyValuesException

public class DataNotFoundException
extends java.lang.Exception

The requested data could not be found. Either your query parameters are wrong or the requested data are missing in the database or the database is not accessible. If the client program is not interested in the details of the failure, it is sufficient to catch this exception only. If you are specifically interested in one of the detailed exceptions, you should catch these before before, or instead, of the general DataNotFoundException.

See Also:
Serialized Form

Constructor Summary
DataNotFoundException()
           
DataNotFoundException(java.lang.String message)
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DataNotFoundException

public DataNotFoundException()

DataNotFoundException

public DataNotFoundException(java.lang.String message)