summaryrefslogtreecommitdiffstats
path: root/simple/simple-http/src/main/java/org/simpleframework/http/core/BodyEncoderException.java
diff options
context:
space:
mode:
Diffstat (limited to 'simple/simple-http/src/main/java/org/simpleframework/http/core/BodyEncoderException.java')
-rw-r--r--simple/simple-http/src/main/java/org/simpleframework/http/core/BodyEncoderException.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/simple/simple-http/src/main/java/org/simpleframework/http/core/BodyEncoderException.java b/simple/simple-http/src/main/java/org/simpleframework/http/core/BodyEncoderException.java
new file mode 100644
index 00000000..7a0a86ac
--- /dev/null
+++ b/simple/simple-http/src/main/java/org/simpleframework/http/core/BodyEncoderException.java
@@ -0,0 +1,58 @@
+/*
+ * BodyEncoderException.java February 2007
+ *
+ * Copyright (C) 2001, Niall Gallagher <niallg@users.sf.net>
+ *
+ * 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 org.simpleframework.http.core;
+
+import java.io.IOException;
+
+/**
+ * The <code>BodyEncoderException</code> object is used to represent
+ * an exception that is thrown when there is a problem producing the
+ * response body. This can be used to wrap <code>IOException</code>
+ * objects that are thrown from the underlying transport.
+ *
+ * @author Niall Gallagher
+ */
+class BodyEncoderException extends IOException {
+
+ /**
+ * Constructor for the <code>BodyEncoderException</code> object. This
+ * is used to represent an exception that is thrown when producing
+ * the response body. The encoder exception is an I/O exception
+ * and thus exceptions can propagate out of stream methods.
+ *
+ * @param message this is the message describing the exception
+ */
+ public BodyEncoderException(String message) {
+ super(message);
+ }
+
+ /**
+ * Constructor for the <code>BodyEncoderException</code> object. This
+ * is used to represent an exception that is thrown when producing
+ * the response body. The encoder exception is an I/O exception
+ * and thus exceptions can propagate out of stream methods.
+ *
+ * @param message this is the message describing the exception
+ * @param cause this is the cause of the encoder exception
+ */
+ public BodyEncoderException(String message, Throwable cause) {
+ super(message);
+ initCause(cause);
+ }
+}