Index: trunk/src/oauth/signpost/exception/OAuthCommunicationException.java
===================================================================
--- trunk/src/oauth/signpost/exception/OAuthCommunicationException.java	(revision 4231)
+++ 	(revision )
@@ -1,35 +1,0 @@
-/* Copyright (c) 2009 Matthias Kaeppler
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package oauth.signpost.exception;
-
-@SuppressWarnings("serial")
-public class OAuthCommunicationException extends OAuthException {
-
-    private String responseBody;
-    
-    public OAuthCommunicationException(Exception cause) {
-        super("Communication with the service provider failed: "
-                + cause.getLocalizedMessage(), cause);
-    }
-    
-    public OAuthCommunicationException(String message, String responseBody) {
-        super(message);
-        this.responseBody = responseBody;
-    }
-    
-    public String getResponseBody() {
-        return responseBody;
-    }
-}
Index: trunk/src/oauth/signpost/exception/OAuthException.java
===================================================================
--- trunk/src/oauth/signpost/exception/OAuthException.java	(revision 4231)
+++ 	(revision )
@@ -1,17 +1,0 @@
-package oauth.signpost.exception;
-
-@SuppressWarnings("serial")
-public abstract class OAuthException extends Exception {
-
-    public OAuthException(String message) {
-        super(message);
-    }
-
-    public OAuthException(Throwable cause) {
-        super(cause);
-    }
-
-    public OAuthException(String message, Throwable cause) {
-        super(message, cause);
-    }
-}
Index: trunk/src/oauth/signpost/exception/OAuthExpectationFailedException.java
===================================================================
--- trunk/src/oauth/signpost/exception/OAuthExpectationFailedException.java	(revision 4231)
+++ 	(revision )
@@ -1,23 +1,0 @@
-/* Copyright (c) 2009 Matthias Kaeppler
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package oauth.signpost.exception;
-
-@SuppressWarnings("serial")
-public class OAuthExpectationFailedException extends OAuthException {
-
-    public OAuthExpectationFailedException(String message) {
-        super(message);
-    }
-}
Index: trunk/src/oauth/signpost/exception/OAuthMessageSignerException.java
===================================================================
--- trunk/src/oauth/signpost/exception/OAuthMessageSignerException.java	(revision 4231)
+++ 	(revision )
@@ -1,28 +1,0 @@
-/* Copyright (c) 2009 Matthias Kaeppler
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package oauth.signpost.exception;
-
-@SuppressWarnings("serial")
-public class OAuthMessageSignerException extends OAuthException {
-
-    public OAuthMessageSignerException(String message) {
-        super(message);
-    }
-
-    public OAuthMessageSignerException(Exception cause) {
-        super(cause);
-    }
-
-}
Index: trunk/src/oauth/signpost/exception/OAuthNotAuthorizedException.java
===================================================================
--- trunk/src/oauth/signpost/exception/OAuthNotAuthorizedException.java	(revision 4231)
+++ 	(revision )
@@ -1,38 +1,0 @@
-/* Copyright (c) 2009 Matthias Kaeppler
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package oauth.signpost.exception;
-
-@SuppressWarnings("serial")
-public class OAuthNotAuthorizedException extends OAuthException {
-
-    private static final String ERROR = "Authorization failed (server replied with a 401). "
-        + "This can happen if the consumer key was not correct or "
-        + "the signatures did not match.";
-    
-    private String responseBody;
-    
-    public OAuthNotAuthorizedException() {
-        super(ERROR);
-    }
-    
-    public OAuthNotAuthorizedException(String responseBody) {
-        super(ERROR);
-        this.responseBody = responseBody;
-    }
-    
-    public String getResponseBody() {
-        return responseBody;
-    }
-}
