HomeSort by relevance Sort by last modified time
    Searched defs:ApiException (Results 1 - 2 of 2) sorted by null

  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 87 public static class ApiException extends Exception {
88 public ApiException(String detailMessage, Throwable throwable) {
92 public ApiException(String detailMessage) {
134 * @throws ApiException If any connection or server error occurs.
138 throws ApiException, ParseException {
167 * @throws ApiException If any connection or server error occurs.
169 protected static synchronized String getUrlContent(String url) throws ApiException {
171 throw new ApiException("User-Agent string must be prepared");
185 throw new ApiException("Invalid response from server: " +
204 throw new ApiException("Problem communicating with API", e)
    [all...]
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 94 public static class ApiException extends Exception {
95 public ApiException(String detailMessage, Throwable throwable) {
99 public ApiException(String detailMessage) {
141 * @throws ApiException If any connection or server error occurs.
145 throws ApiException, ParseException {
174 * @throws ApiException If any connection or server error occurs.
176 protected static synchronized String getUrlContent(String url) throws ApiException {
178 throw new ApiException("User-Agent string must be prepared");
192 throw new ApiException("Invalid response from server: " +
211 throw new ApiException("Problem communicating with API", e)
    [all...]

Completed in 29 milliseconds