Searched refs:NotActiveException (Results 1 - 14 of 14) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/io/
H A DNotActiveException.java25 * {@code NotActiveException} to be thrown. The list of methods that are
33 public class NotActiveException extends ObjectStreamException { class in inherits:ObjectStreamException
38 * Constructs a new {@code NotActiveException} with its stack trace filled
41 public NotActiveException() { method in class:NotActiveException
46 * Constructs a new {@code NotActiveException} with its stack trace and
52 public NotActiveException(String detailMessage) { method in class:NotActiveException
H A DObjectInputStream.java522 * @throws NotActiveException
527 NotActiveException {
532 throw new NotActiveException();
1130 * @throws NotActiveException
1134 NotActiveException {
1137 throw new NotActiveException();
1414 * @throws NotActiveException
1422 throws IOException, ClassNotFoundException, NotActiveException {
1425 throw new NotActiveException();
1516 throws IOException, ClassNotFoundException, NotActiveException {
[all...]
H A DObjectOutputStream.java411 * @throws NotActiveException
418 throw new NotActiveException();
592 * @throws NotActiveException
599 throw new NotActiveException();
1008 * @throws NotActiveException
1015 throw new NotActiveException();
1198 * @throws NotActiveException
1205 throws IOException, NotActiveException {
1208 throw new NotActiveException();
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DNotActiveExceptionTest.java20 import java.io.NotActiveException;
26 @TestTargetClass(NotActiveException.class)
30 * @tests java.io.NotActiveException#NotActiveException()
34 method = "NotActiveException",
40 throw new NotActiveException();
41 fail("Test 1: NotActiveException expected.");
42 } catch (NotActiveException e) {
49 * @tests java.io.NotActiveException#NotActiveException(jav
[all...]
H A DObjectStreamFieldTest.java31 import java.io.NotActiveException;
468 private void readObject(ObjectInputStream in) throws NotActiveException,
533 private void readObject(ObjectInputStream in) throws NotActiveException,
H A DObjectInputStreamTest.java29 import java.io.NotActiveException;
259 fail("NotActiveException expected");
260 } catch (NotActiveException e) {
1472 fail("NotActiveException should be thrown");
1473 } catch (NotActiveException nae) {
H A DObjectOutputStreamTest.java26 import java.io.NotActiveException;
798 "always throws a NotActiveException if called directly.",
805 fail("Test 1: NotActiveException expected.");
806 } catch (NotActiveException e) {
871 "always throws a NotActiveException if called directly.",
886 fail("Test 1: NotActiveException expected.");
887 } catch (NotActiveException e) {
H A DSerializationStressTest0.java31 import java.io.NotActiveException;
122 } catch (NotActiveException e) {
128 "Failed to throw NotActiveException when invoked outside readObject");
H A DSerializationStressTest2.java30 import java.io.NotActiveException;
980 } catch (NotActiveException ce) {
H A DSerializationStressTest1.java1806 java.io.IOException ex = new java.io.NotActiveException(FOO);
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/crypto/
H A DDSAPrivateKeyImpl.java30 import java.io.NotActiveException;
159 private void readObject(java.io.ObjectInputStream in) throws NotActiveException, IOException, ClassNotFoundException {
H A DDSAPublicKeyImpl.java32 import java.io.NotActiveException;
177 private void readObject(java.io.ObjectInputStream in) throws NotActiveException, IOException, ClassNotFoundException {
/dalvik/libcore/security/src/test/java/tests/security/permissions/
H A DJavaIoObjectInputStreamTest.java24 import java.io.NotActiveException;
167 public GetField readFields() throws IOException, ClassNotFoundException, NotActiveException {
/dalvik/libcore/security/src/main/java/java/security/
H A DProvider.java22 import java.io.NotActiveException;
1159 private void readObject(java.io.ObjectInputStream in) throws NotActiveException, IOException, ClassNotFoundException {

Completed in 924 milliseconds