OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:objectstreamexception
(Results
1 - 25
of
68
) sorted by null
1
2
3
/libcore/luni/src/main/java/java/io/
ObjectStreamException.java
32
public abstract class
ObjectStreamException
extends IOException {
37
* Constructs a new {@code
ObjectStreamException
} with its stack trace
40
protected
ObjectStreamException
() {
44
* Constructs a new {@code
ObjectStreamException
} with its stack trace and
50
protected
ObjectStreamException
(String detailMessage) {
InvalidObjectException.java
26
public class InvalidObjectException extends
ObjectStreamException
{
StreamCorruptedException.java
29
public class StreamCorruptedException extends
ObjectStreamException
{
NotActiveException.java
33
public class NotActiveException extends
ObjectStreamException
{
NotSerializableException.java
30
public class NotSerializableException extends
ObjectStreamException
{
OptionalDataException.java
29
public class OptionalDataException extends
ObjectStreamException
{
InvalidClassException.java
34
public class InvalidClassException extends
ObjectStreamException
{
WriteAbortedException.java
30
public class WriteAbortedException extends
ObjectStreamException
{
/libcore/luni/src/test/java/tests/security/cert/
CertPathCertPathRepTest.java
8
import java.io.
ObjectStreamException
;
48
fail("
ObjectStreamException
was not thrown.");
49
} catch (
ObjectStreamException
e) {
56
fail("
ObjectStreamException
expected");
57
} catch (
ObjectStreamException
e) {
CertificateCertificateRepTest.java
9
import java.io.
ObjectStreamException
;
66
fail("
ObjectStreamException
expected");
67
} catch (
ObjectStreamException
e) {
78
} catch (
ObjectStreamException
e) {
79
fail("Unexpected
ObjectStreamException
" + e.getMessage());
CertPathTest.java
25
import java.io.
ObjectStreamException
;
206
} catch (
ObjectStreamException
e) {
207
fail("Unexpected
ObjectStreamException
" + e.getMessage());
215
fail("expected
ObjectStreamException
");
216
} catch (
ObjectStreamException
e) {
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertificateTest.java
25
import java.io.
ObjectStreamException
;
72
* Assertion:
ObjectStreamException
if a <code>CertPath</code> could not
82
fail("No expected
ObjectStreamException
");
83
} catch (
ObjectStreamException
e) {
100
} catch (
ObjectStreamException
e) {
CertPathTest.java
24
import java.io.
ObjectStreamException
;
79
* Assertion:
ObjectStreamException
if a <code>CertPath</code>
90
fail("No expected
ObjectStreamException
");
91
} catch (
ObjectStreamException
e) {
109
} catch (
ObjectStreamException
e) {
/external/mockito/src/org/mockito/exceptions/base/
MockitoSerializationIssue.java
10
import java.io.
ObjectStreamException
;
23
public class MockitoSerializationIssue extends
ObjectStreamException
{
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificate.java
25
import java.io.
ObjectStreamException
;
92
public Object writeReplace() throws
ObjectStreamException
{
115
throws
ObjectStreamException
{
133
public Object readResolve() throws
ObjectStreamException
{
MyCertPath.java
25
import java.io.
ObjectStreamException
;
112
public Object writeReplace() throws
ObjectStreamException
{
129
public Object readResolve() throws
ObjectStreamException
{
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java
70
// public final void testReadResolve01() throws
ObjectStreamException
{
96
// public final void testReadResolve02() throws
ObjectStreamException
{
122
// public final void testReadResolve03() throws
ObjectStreamException
{
148
// public final void testReadResolve04() throws
ObjectStreamException
{
168
// public final void testReadResolve05() throws
ObjectStreamException
{
/external/javassist/src/main/javassist/util/proxy/
SerializedProxy.java
19
import java.io.
ObjectStreamException
;
73
Object readResolve() throws
ObjectStreamException
{
/libcore/luni/src/main/java/java/security/cert/
CertPath.java
22
import java.io.
ObjectStreamException
;
168
* @throws
ObjectStreamException
171
protected Object writeReplace() throws
ObjectStreamException
{
217
* @throws
ObjectStreamException
220
protected Object readResolve() throws
ObjectStreamException
{
Certificate.java
22
import java.io.
ObjectStreamException
;
192
* @throws
ObjectStreamException
195
protected Object writeReplace() throws
ObjectStreamException
{
241
* @throws
ObjectStreamException
244
protected Object readResolve() throws
ObjectStreamException
{
/libcore/luni/src/main/java/java/net/
Inet4Address.java
20
import java.io.
ObjectStreamException
;
128
private Object writeReplace() throws
ObjectStreamException
{
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectInputStream2Test.java
28
import java.io.
ObjectStreamException
;
52
fail("Expected
ObjectStreamException
");
53
} catch (
ObjectStreamException
e) {
SerializationStressTest.java
32
import java.io.
ObjectStreamException
;
826
public Object writeReplace() throws
ObjectStreamException
{
835
public Object writeReplace() throws
ObjectStreamException
{
841
private Object writeReplace() throws
ObjectStreamException
{
857
public Object writeReplace() throws
ObjectStreamException
{
872
public Object readResolve() throws
ObjectStreamException
{
881
private Object readResolve() throws
ObjectStreamException
{
896
public Object readResolve() throws
ObjectStreamException
{
952
} catch (
ObjectStreamException
e) {
955
assertTrue("Should throw
ObjectStreamException
", exception)
[
all
...]
/libcore/luni/src/main/java/java/security/
KeyRep.java
23
import java.io.
ObjectStreamException
;
100
* @throws
ObjectStreamException
104
protected Object readResolve() throws
ObjectStreamException
{
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java
26
import java.io.
ObjectStreamException
;
167
@Override public Object readResolve() throws
ObjectStreamException
{
Completed in 603 milliseconds
1
2
3