FileDocCategorySizeDatePackage
NoSuchPersonException.javaAPI DocExample260Fri Sep 09 12:47:56 BST 2005com.oreilly.jent.ejb

NoSuchPersonException.java

package com.oreilly.jent.ejb;

// Thrown if data is requested for a person that cannot be not found.

public class NoSuchPersonException extends Exception {
  public NoSuchPersonException() {}
  public NoSuchPersonException(String message) {super(message);}
}