JvnException.java

Go to the documentation of this file.
00001 /***
00002  * JAVANAISE API
00003  *
00004  * @author Fabienne BOYER
00005  * @author Lionel DEBROUX, http://lionel.debroux.free.fr
00006  * @author Savas Ali TOKMEN, http://ali.tokmen.com
00007  */
00008 
00009 package jvn;
00010 
00015 public class JvnException extends Exception {
00019         private static final long serialVersionUID = 5040142103568889147L;
00020         String message;
00021 
00022         public JvnException() {
00023         }
00024 
00025         public JvnException(String message) {
00026                 this.message = message;
00027         }
00028 
00029         public String getMessage(){
00030                 return message;
00031         }
00032 }

Generated on Wed Jan 2 10:15:54 2008 for Javanaise by  doxygen 1.5.4