-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotActiveException.java
More file actions
53 lines (48 loc) · 885 Bytes
/
NotActiveException.java
File metadata and controls
53 lines (48 loc) · 885 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
53
/*
* Copyright (c) 1996, 2005, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.io;
/**
* Thrown when serialization or deserialization is not active.
*
* @author unascribed
* @since JDK1.1
*/
public class NotActiveException extends ObjectStreamException {
private static final long serialVersionUID = -3893467273049808895L;
/**
* Constructor to create a new NotActiveException with the reason given.
*
* @param reason a String describing the reason for the exception.
*/
public NotActiveException(String reason) {
super(reason);
}
/**
* Constructor to create a new NotActiveException without a reason.
*/
public NotActiveException() {
super();
}
}