summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata/client/AuthenticationException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/google/wireless/gdata/client/AuthenticationException.java')
-rw-r--r--src/com/google/wireless/gdata/client/AuthenticationException.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/com/google/wireless/gdata/client/AuthenticationException.java b/src/com/google/wireless/gdata/client/AuthenticationException.java
deleted file mode 100644
index 68866ce..0000000
--- a/src/com/google/wireless/gdata/client/AuthenticationException.java
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2007 The Android Open Source Project
-
-package com.google.wireless.gdata.client;
-
-import com.google.wireless.gdata.GDataException;
-
-/**
- * Exception thrown when a user's credentials could not be authenticated.
- */
-public class AuthenticationException extends GDataException {
-
- /**
- * Creates a new AuthenticationException.
- */
- public AuthenticationException() {
- }
-
- /**
- * Creates a new AuthenticationException with a supplied message.
- * @param message The message for the exception.
- */
- public AuthenticationException(String message) {
- super(message);
- }
-
- /**
- * Creates a new AuthenticationException with a supplied message and
- * underlying cause.
- *
- * @param message The message for the exception.
- * @param cause Another throwable that was caught and wrapped in this
- * exception.
- */
- public AuthenticationException(String message, Throwable cause) {
- super(message, cause);
- }
-}