Home | History | Annotate | Download | only in DNS

Lines Matching refs:thrown

28 	Throwable thrown;
70 thrown = t;
120 else if (thrown instanceof IOException)
121 throw (IOException) thrown;
122 else if (thrown instanceof RuntimeException)
123 throw (RuntimeException) thrown;
124 else if (thrown instanceof Error)
125 throw (Error) thrown;
190 if (thrown == null)
191 thrown = e;
197 if (thrown == null ||
198 thrown instanceof InterruptedIOException)
199 thrown = e;
205 thrown = e;
228 if (!(thrown instanceof Exception))
229 thrown = new RuntimeException(thrown.getMessage());
230 listener.handleException(this, (Exception) thrown);