View Javadoc

1   /***
2    * Copyright 2007 ATG DUST Project
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * 
7    * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8    * 
9    * Unless required by applicable law or agreed to in writing, software 
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and limitations under the License.
13   */
14  
15  package atg.adapter.gsa;
16  
17  import atg.core.exception.ContainerException;
18  
19  /***
20   * An exception created by the SQLProcessorEngine.
21   * Class derived from IDGeneratorException by mgk.
22   *
23   * @author mrf
24   * @version $Id: //test/UnitTests/base/main/src/Java/atg/test/apiauto/util/SQLProcessorException.java#1 $
25   **/
26  public class SQLProcessorException
27  extends ContainerException
28  {
29    /***
30     * Eclipse generated
31     */
32    private static final long serialVersionUID = 2541234526510136456L;
33    //-------------------------------------
34    /*** Class version string */
35    public static final String CLASS_VERSION =
36    "$Id: //test/UnitTests/base/main/src/Java/atg/test/apiauto/util/SQLProcessorException.java#1 $";
37  
38    //-------------------------------------
39    /***
40     * Construct an SQLProcessorException
41     * @param pMessage message
42     **/
43    public SQLProcessorException(String pMessage)
44    {
45      super(pMessage);
46    }
47  
48    //-------------------------------------
49    /***
50     * Construct an SQLProcessorException
51     * @param pSourceException source exception
52     * @param pMessage message
53     **/
54    public SQLProcessorException(Throwable pSourceException)
55    {
56      super(pSourceException);
57    }
58  
59    //-------------------------------------
60    /***
61     * Construct an SQLProcessorException
62     * @param pSourceException source exception
63     * @param pMessage message
64     **/
65    public SQLProcessorException(String pMessage, Throwable pSourceException)
66    {
67      super(pMessage, pSourceException);
68    }
69  
70  } // end of class SQLProcessorException