Home
last modified time | relevance | path

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

/external/doclava/src/com/google/doclava/
DThrowsTagInfo.java33 private ClassInfo mException; field in ThrowsTagInfo
44 mException = ((ClassInfo) base).findClass(className); in ThrowsTagInfo()
46 if (mException == null) { in ThrowsTagInfo()
47 mException = Converter.obtainClass(className); in ThrowsTagInfo()
55 mException = exception; in ThrowsTagInfo()
60 return mException; in exception()
64 if (mException != null) { in exceptionType()
65 return mException.asTypeInfo(); in exceptionType()
/external/volley/src/main/java/com/android/volley/toolbox/
DRequestFuture.java59 private VolleyError mException; field in RequestFuture
102 if (mException != null) { in doGet()
103 throw new ExecutionException(mException); in doGet()
123 if (mException != null) { in doGet()
124 throw new ExecutionException(mException); in doGet()
144 return mResultReceived || mException != null || isCancelled(); in isDone()
156 mException = error; in onErrorResponse()
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
DUrlDownloaderTask.java46 private Throwable mException; field in UrlDownloaderTask
103 mException = e; in doInBackground()
133 if (mException != null) { in onPostExecute()
134 Log.e("Download failed.", mException); in onPostExecute()
DZipExtractorTask.java50 private Throwable mException; field in ZipExtractorTask
115 mException = e; in doInBackground()
141 if (mException != null) { in onPostExecute()
142 Log.e("Zip extraction failed.", mException); in onPostExecute()