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.junit.nucleus;
16
17 import 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 */
23 public 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
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 }