Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3464)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestFailureException.java

Issue 67313003: Upstream the updated Java Omaha XML parser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestFailureException.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestFailureException.java b/chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestFailureException.java
new file mode 100644
index 0000000000000000000000000000000000000000..a8fc167503468d0bb0e67b0ead9bbb3c5cc0fd70
--- /dev/null
+++ b/chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestFailureException.java
@@ -0,0 +1,18 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.chrome.browser.omaha;
+
+/**
+ * Serves as a general exception for failed POST requests to the Omaha Update Server.
+ */
+public class RequestFailureException extends Exception {
+ public RequestFailureException(String message) {
+ super(message);
+ }
+
+ public RequestFailureException(String message, Throwable cause) {
+ super(message, cause);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698