blob: 199bce4823d01e969a4beb0a7a38dbb8bc908283 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* Exception generated upon encountering corrupted tar files.
*/
package org.eclipse.pde.api.tools.internal.util;
public class TarException extends Exception {
/**
* Generated serial version UID for this class.
*/
private static final long serialVersionUID = 2886671254518853528L;
/**
* Constructs a TarException without a detail string.
*/
public TarException() {
super();
}
/**
* Constructs a TarException with the specified detail string.
*
* @param s the detail string
*/
public TarException(String s) {
super(s);
}
/**
* Constructs a TarException with the specified detail string.
*
* @param s the detail string
* @param cause the cause
*/
public TarException(String s, Throwable cause) {
super(s, cause);
}
}