aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/android/volley/ClientError.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/android/volley/ClientError.java')
-rw-r--r--src/main/java/com/android/volley/ClientError.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/android/volley/ClientError.java b/src/main/java/com/android/volley/ClientError.java
index a8c8141..521b76f 100644
--- a/src/main/java/com/android/volley/ClientError.java
+++ b/src/main/java/com/android/volley/ClientError.java
@@ -19,8 +19,8 @@ package com.android.volley;
/**
* Indicates that the server responded with an error response indicating that the client has erred.
*
- * For backwards compatibility, extends ServerError which used to be thrown for all server errors,
- * including 4xx error codes indicating a client error.
+ * <p>For backwards compatibility, extends ServerError which used to be thrown for all server
+ * errors, including 4xx error codes indicating a client error.
*/
@SuppressWarnings("serial")
public class ClientError extends ServerError {
@@ -32,4 +32,3 @@ public class ClientError extends ServerError {
super();
}
}
-