01: /*
02: * Created on May 25, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.resource;
08:
09: /**
10: * @author AYegorov
11: *
12: * Company: xDev Group.org
13: *
14: * URL: <a>http://activexml.dev.java.net</a>
15: *
16: * File name: DataSourceNotFoundException.java
17: *
18: * <p>Is bound: true | false</p>
19: *
20: * <table>
21: * <tr>
22: * <td>Description:</td>
23: * <td>
24: * <!--Your description here-->
25: * </td>
26: * </tr>
27: * </table>
28: * <tr>
29: * <td colspan="3">
30: * Properties
31: * </td>
32: * </tr>
33: * <tr>
34: * <td>Name</td>
35: * <td>Value</td>
36: * <td>Description</td>
37: * </tr>
38: * <tr>
39: * <td></td>
40: * <td></td>
41: * <td></td>
42: * </tr>
43: * </table>
44: */
45: public class DataSourceNotFoundException extends Exception {
46:
47: /**
48: *
49: */
50: public DataSourceNotFoundException() {
51: super ();
52: // XXX Auto-generated constructor stub
53: }
54:
55: /**
56: * @param message
57: */
58: public DataSourceNotFoundException(String message) {
59: super (message);
60: // XXX Auto-generated constructor stub
61: }
62:
63: /**
64: * @param cause
65: */
66: public DataSourceNotFoundException(Throwable cause) {
67: super (cause);
68: // XXX Auto-generated constructor stub
69: }
70:
71: /**
72: * @param message
73: * @param cause
74: */
75: public DataSourceNotFoundException(String message, Throwable cause) {
76: super (message, cause);
77: // XXX Auto-generated constructor stub
78: }
79:
80: }
|