Home
last modified time | relevance | path

Searched refs:nse (Results 1 – 4 of 4) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DNotSerializableExceptionTest.java30 NotSerializableException nse = new NotSerializableException(); in test_Constructor() local
31 assertNull(nse.getMessage()); in test_Constructor()
39 NotSerializableException nse = new NotSerializableException(message); in test_ConstructorLjava_lang_String() local
40 assertSame(message, nse.getMessage()); in test_ConstructorLjava_lang_String()
/libcore/ojluni/src/main/java/java/security/cert/
DCertPath.java289 NotSerializableException nse = in writeReplace()
292 nse.initCause(ce); in writeReplace()
293 throw nse; in writeReplace()
335 NotSerializableException nse = in readResolve()
338 nse.initCause(ce); in readResolve()
339 throw nse; in readResolve()
/libcore/ojluni/src/main/java/java/security/
DKeyRep.java183 } catch (NotSerializableException nse) { in readResolve()
184 throw nse; in readResolve()
186 NotSerializableException nse = new NotSerializableException in readResolve()
191 nse.initCause(e); in readResolve()
192 throw nse; in readResolve()
/libcore/jsr166-tests/src/test/java/jsr166/
DFutureTaskTest.java321 Exception nse = new NoSuchElementException(); in testSetException_get() local
323 task.setException(nse); in testSetException_get()
329 assertSame(nse, success.getCause()); in testSetException_get()
330 checkCompletedAbnormally(task, nse); in testSetException_get()
337 assertSame(nse, success.getCause()); in testSetException_get()
338 checkCompletedAbnormally(task, nse); in testSetException_get()
344 checkCompletedAbnormally(task, nse); in testSetException_get()