Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ParseException |
|
| 1.0;1 |
1 | package org.apache.torque.engine.sql; | |
2 | ||
3 | /* | |
4 | * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE | |
5 | * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file | |
6 | * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the | |
7 | * License. You may obtain a copy of the License at | |
8 | * | |
9 | * http://www.apache.org/licenses/LICENSE-2.0 | |
10 | * | |
11 | * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | |
12 | * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | |
13 | * specific language governing permissions and limitations under the License. | |
14 | */ | |
15 | ||
16 | /** | |
17 | * An Exception for parsing SQLToAppData. This class will probably get some extra features in future. | |
18 | * | |
19 | * @author <a href="mailto:leon@opticode.co.za">Leon Messerschmidt</a> | |
20 | * @version $Id: ParseException.java,v 1.1 2007-10-21 07:57:27 abyrne Exp $ | |
21 | */ | |
22 | public class ParseException extends Exception { | |
23 | /** | |
24 | * Serial version | |
25 | */ | |
26 | private static final long serialVersionUID = -8595262272114680431L; | |
27 | ||
28 | /** | |
29 | * constructor. | |
30 | * | |
31 | * @param err | |
32 | * error message | |
33 | */ | |
34 | public ParseException(String err) { | |
35 | 0 | super(err); |
36 | 0 | } |
37 | } |