Guest User

Untitled

a guest
Dec 11th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. /*
  2.  * $Id :$
  3.  * $Log: NoSuchPatientException.java,v $
  4.  * Revision 1.1  2012/09/25 20:25:33  srs1230
  5.  * Initial revision
  6.  *
  7.  *
  8.  *
  9.  */
  10.  
  11. public class  NoSuchPatientException extends Exception{
  12.     public  NoSuchPatientException(){
  13.         super();
  14.     }
  15.    
  16.     public  NoSuchPatientException(String except){
  17.         super(except);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment