You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
818 B
53 lines
818 B
/*
|
|
* Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.util.jar;
|
|
|
|
/**
|
|
* Signals that an error of some sort has occurred while reading from
|
|
* or writing to a JAR file.
|
|
*
|
|
* @author David Connelly
|
|
* @since 1.2
|
|
*/
|
|
public
|
|
class JarException extends java.util.zip.ZipException {
|
|
private static final long serialVersionUID = 7159778400963954473L;
|
|
|
|
/**
|
|
* Constructs a JarException with no detail message.
|
|
*/
|
|
public JarException() {
|
|
}
|
|
|
|
/**
|
|
* Constructs a JarException with the specified detail message.
|
|
* @param s the detail message
|
|
*/
|
|
public JarException(String s) {
|
|
super(s);
|
|
}
|
|
}
|