All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jtelos.IndividualNotFoundException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----jtelos.IndividualNotFoundException

public class IndividualNotFoundException
extends RuntimeException
Thrown when a search is performed for an individual, say in a list of ancestors or parents, and it is not found in that list.

Note that since it is a RuntimeException it doesn't require a throws clause in methods that throw it, nor try/catch statements around invocations of those methods. Nonetheless, it should be handled.

See Also:
Individual

Constructor Index

 o IndividualNotFoundException(String, String, String)
Thrown when there are no individual found in the list.

Constructors

 o IndividualNotFoundException
 public IndividualNotFoundException(String individualName,
                                    String listName,
                                    String ownerName)
Thrown when there are no individual found in the list. Returns message:

"Couldn't find individual: <individualName> in <listName> list in <ownerName>".


All Packages  Class Hierarchy  This Package  Previous  Next  Index