Searched refs:nse (Results 1 – 4 of 4) sorted by relevance
30 NotSerializableException nse = new NotSerializableException(); in test_Constructor() local31 assertNull(nse.getMessage()); in test_Constructor()39 NotSerializableException nse = new NotSerializableException(message); in test_ConstructorLjava_lang_String() local40 assertSame(message, nse.getMessage()); in test_ConstructorLjava_lang_String()
289 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()
183 } 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()
321 Exception nse = new NoSuchElementException(); in testSetException_get() local323 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()