01 package com.bea.medrec.exceptions;
02
03 /**
04 * <p>Duplicate account exception class.</p>
05 *
06 * @author Copyright (c) 2006 by BEA Systems. All Rights Reserved.
07 */
08 public class DuplicateAccountException extends Exception
09 {
10 // Constructors
11 public DuplicateAccountException(String errMsg) { super(errMsg); }
12 public DuplicateAccountException(Throwable cause) { super(cause); }
13 public DuplicateAccountException(String errMsg, Throwable cause) {
14 super(errMsg, cause);
15 }
16 }
|