Improved JavaDocs

This commit is contained in:
Erik C. Thauvin 2024-10-26 20:36:13 -07:00
parent 96497f7f27
commit 7ee45b34a4
Signed by: erik
GPG key ID: 776702A6A2DA330E
4 changed files with 10 additions and 4 deletions

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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() {