EMMA Coverage Report (generated Tue Nov 24 15:49:41 EST 2009)
[all classes][atg.adapter.gsa]

COVERAGE SUMMARY FOR SOURCE FILE [SQLProcessorException.java]

nameclass, %method, %block, %line, %
SQLProcessorException.java0%   (0/1)0%   (0/3)0%   (0/13)0%   (0/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SQLProcessorException0%   (0/1)0%   (0/3)0%   (0/13)0%   (0/6)
SQLProcessorException (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
SQLProcessorException (String, Throwable): void 0%   (0/1)0%   (0/5)0%   (0/2)
SQLProcessorException (Throwable): void 0%   (0/1)0%   (0/4)0%   (0/2)

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 
15package atg.adapter.gsa;
16 
17import 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 **/
26public class SQLProcessorException
27extends 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

[all classes][atg.adapter.gsa]
EMMA 2.0.5312 (C) Vladimir Roubtsov