Skip to main content
summaryrefslogtreecommitdiffstats
blob: 93fe20594c0265bfd81bcd9e31e4b01bd5a1902f (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
/*******************************************************************************
 * Copyright (c) 2001, 2005 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;


public class ManifestException extends ArchiveRuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1045140899078192019L;

	/**
	 * Constructor for ManifestException.
	 */
	public ManifestException() {
		super();
	}

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

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

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

}

Back to the top