-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJarException.java
More file actions
52 lines (48 loc) · 818 Bytes
/
JarException.java
File metadata and controls
52 lines (48 loc) · 818 Bytes
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
/*
* 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);
}
}