FileDocCategorySizeDatePackage
DuplicateProfileException.javaAPI DocExample302Fri Sep 09 12:47:56 BST 2005com.oreilly.jent.ejb

DuplicateProfileException.java

package com.oreilly.jent.ejb;

// This exception is thrown if an attempt is made to create another profile
// for the same person.

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