Searched defs:StopRequestException (Results 1 - 1 of 1) sorted by relevance

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DStopRequestException.java28 class StopRequestException extends Exception { class in inherits:Exception
31 public StopRequestException(int finalStatus, String message) { method in class:StopRequestException
36 public StopRequestException(int finalStatus, Throwable t) { method in class:StopRequestException
41 public StopRequestException(int finalStatus, String message, Throwable t) { method in class:StopRequestException
50 public static StopRequestException throwUnhandledHttpError(int code, String message)
51 throws StopRequestException {
54 throw new StopRequestException(code, error);
56 throw new StopRequestException(STATUS_UNHANDLED_REDIRECT, error);
58 throw new StopRequestException(STATUS_UNHANDLED_HTTP_CODE, error);

Completed in 56 milliseconds