Home | History | Annotate | Download | only in net

Lines Matching refs:getException

200         } else if (runnable.getException() instanceof IOException) {
201 throw (IOException) runnable.getException();
202 } else if (runnable.getException() instanceof DataSizeException) {
203 throw (DataSizeException) runnable.getException();
204 } else if (runnable.getException() instanceof RuntimeException) {
205 throw (RuntimeException) runnable.getException();
220 } else if (runnable.getException() instanceof IOException) {
221 throw (IOException) runnable.getException();
222 } else if (runnable.getException() instanceof RuntimeException) {
223 throw (RuntimeException) runnable.getException();
239 } else if (runnable.getException() instanceof IOException) {
240 throw (IOException) runnable.getException();
241 } else if (runnable.getException() instanceof DataSizeException) {
242 throw (DataSizeException) runnable.getException();
243 } else if (runnable.getException() instanceof RuntimeException) {
244 throw (RuntimeException) runnable.getException();
287 public Exception getException() {