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

COVERAGE SUMMARY FOR SOURCE FILE [FileFormatException.java]

nameclass, %method, %block, %line, %
FileFormatException.java0%   (0/1)0%   (0/4)0%   (0/16)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FileFormatException0%   (0/1)0%   (0/4)0%   (0/16)0%   (0/4)
FileFormatException (): void 0%   (0/1)0%   (0/3)0%   (0/1)
FileFormatException (String): void 0%   (0/1)0%   (0/4)0%   (0/1)
FileFormatException (String, Throwable): void 0%   (0/1)0%   (0/5)0%   (0/1)
FileFormatException (Throwable): void 0%   (0/1)0%   (0/4)0%   (0/1)

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.junit.nucleus;
16 
17import atg.core.exception.ContainerException;
18 
19/** A general utility exception thrown if a file is formatted in an unexpected manner.
20 *
21 * @version 1.0
22 */
23public class FileFormatException
24    extends ContainerException
25{
26  /**
27   * Generated by Eclipse 
28   */
29  private static final long serialVersionUID = 3792664787828316062L;
30 
31  /** no arg constructor */
32  public FileFormatException() { super(); }
33 
34  /* constructor */
35  public FileFormatException( String pMsg ) {
36      super( pMsg ); }
37 
38  /** constructor */
39  public FileFormatException( Throwable pErr ) {
40      super( pErr ); }
41 
42  /** constructor */
43  public FileFormatException( String pMsg, Throwable pErr ) {
44      super( pMsg, pErr ); }
45}

[all classes][atg.junit.nucleus]
EMMA 2.0.5312 (C) Vladimir Roubtsov