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