KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sellwin > db > SellwinNotFoundException


1 package sellwin.db;
2
3 // SellWin http://sourceforge.net/projects/sellwincrm
4
//Contact support@open-app.com for commercial help with SellWin
5
//This software is provided "AS IS", without a warranty of any kind.
6

7 /**
8  * This class is a general application level exception that is thrown
9  * in the database code to indicate that a not found occurred on a
10  * select
11  */

12 public class SellwinNotFoundException extends java.lang.Exception JavaDoc {
13     public SellwinNotFoundException() {
14         super();
15     }
16
17     public SellwinNotFoundException(String JavaDoc s) {
18         super(s);
19     }
20 }
21
Popular Tags