diff --git a/src/main/java/net/thauvin/erik/httpstatus/taglibs/CauseTag.java b/src/main/java/net/thauvin/erik/httpstatus/taglibs/CauseTag.java index c5a4c21..4be47a8 100644 --- a/src/main/java/net/thauvin/erik/httpstatus/taglibs/CauseTag.java +++ b/src/main/java/net/thauvin/erik/httpstatus/taglibs/CauseTag.java @@ -48,7 +48,9 @@ import java.io.IOException; */ public class CauseTag extends XmlSupport { /** - * {@inheritDoc} + * Prints the cause (if any) for the current HTTP Status Error Code. + * + * @throws IOException If an error occurs while writing the output. */ @Override public void doTag() throws IOException { diff --git a/src/main/java/net/thauvin/erik/httpstatus/taglibs/CodeTag.java b/src/main/java/net/thauvin/erik/httpstatus/taglibs/CodeTag.java index 8de8ee4..cd3d9cb 100644 --- a/src/main/java/net/thauvin/erik/httpstatus/taglibs/CodeTag.java +++ b/src/main/java/net/thauvin/erik/httpstatus/taglibs/CodeTag.java @@ -47,7 +47,9 @@ import java.io.IOException; */ public class CodeTag extends SimpleTagSupport { /** - * {@inheritDoc} + * Writes the HTTP Status Error Code to the current JspWriter. + * + * @throws IOException If an I/O error occurs. */ @Override public void doTag() throws IOException { diff --git a/src/main/java/net/thauvin/erik/httpstatus/taglibs/MessageTag.java b/src/main/java/net/thauvin/erik/httpstatus/taglibs/MessageTag.java index 59f53c8..e17ce05 100644 --- a/src/main/java/net/thauvin/erik/httpstatus/taglibs/MessageTag.java +++ b/src/main/java/net/thauvin/erik/httpstatus/taglibs/MessageTag.java @@ -47,7 +47,9 @@ import java.io.IOException; */ public class MessageTag extends XmlSupport { /** - * {@inheritDoc} + * Writes the error message associated with the current HTTP Status Error Code. + * + * @throws IOException If an I/O error occurs. */ @Override public void doTag() throws IOException { diff --git a/src/main/java/net/thauvin/erik/httpstatus/taglibs/ReasonTag.java b/src/main/java/net/thauvin/erik/httpstatus/taglibs/ReasonTag.java index 7b712ca..3b2dc68 100644 --- a/src/main/java/net/thauvin/erik/httpstatus/taglibs/ReasonTag.java +++ b/src/main/java/net/thauvin/erik/httpstatus/taglibs/ReasonTag.java @@ -51,7 +51,7 @@ public class ReasonTag extends XmlSupport { private int statusCode = -1; /** - * {@inheritDoc} + * Writes the Reason Phrase for the current (or specified) HTTP Status Error Code. */ @Override public void doTag() {