Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 8b8ae7827909520d9d95650e1a8c989c5128a070 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 * IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.j2ee.commonarchivecore.internal.exception;

import org.eclipse.jst.j2ee.internal.IWrappedException;
import org.eclipse.jst.j2ee.internal.WrappedRuntimeException;



/**
 * Base exception class for runtime exceptions occurring with manipulation of archives; there are
 * some situations where we can only throw a runtime exception instead of a subtype of exception,
 * because the signatures of etools generated methods cannot be overridden to throw any exception
 * other than runtime.
 */
public class ArchiveRuntimeException extends WrappedRuntimeException implements IWrappedException {
	/**
	 * Constructor for ArchiveRuntimeException.
	 */
	public ArchiveRuntimeException() {
		super();
	}

	/**
	 * Constructor for ArchiveRuntimeException.
	 * 
	 * @param e
	 */
	public ArchiveRuntimeException(Exception e) {
		super(e);
	}

	/**
	 * Constructor for ArchiveRuntimeException.
	 * 
	 * @param s
	 */
	public ArchiveRuntimeException(String s) {
		super(s);
	}

	/**
	 * Constructor for ArchiveRuntimeException.
	 * 
	 * @param s
	 * @param e
	 */
	public ArchiveRuntimeException(String s, Exception e) {
		super(s, e);
	}

}

Back to the top