KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openbravo > exception > PoolNotFoundException


1 /*
2  ************************************************************************************
3  * Copyright (C) 2001-2006 Openbravo S.L.
4  * Licensed under the Apache Software License version 2.0
5  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software distributed
7  * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
8  * CONDITIONS OF ANY KIND, either express or implied. See the License for the
9  * specific language governing permissions and limitations under the License.
10  ************************************************************************************
11 */

12 package org.openbravo.exception;
13
14 /**
15  * Thrown to indicate a pool does not exist.
16  *
17  * @author <b>Ismael Ciordia</b>, Copyright &#169; 2001
18  * @version 1.0, 15/10/2001
19 */

20 public class PoolNotFoundException extends Exception JavaDoc {
21
22   /**
23    * Constructs a new PoolNotFoundException with no detail message.
24    */

25   public PoolNotFoundException() {
26     super();
27   }
28
29   /**
30    * Constructs a new PoolNotFoundException with the specified
31    * detail message.
32    *
33    * @param s the detail message
34    */

35   public PoolNotFoundException(String JavaDoc s) {
36     super(s);
37   }
38 }
39
Popular Tags