Skip to content

Commit

Permalink
Clean up JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfl committed Nov 7, 2011
1 parent 4ce0ad5 commit dd6ff07
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/src/java/org/jdom2/transform/JDOMResult.java
Expand Up @@ -363,6 +363,7 @@ private static class FragmentHandler extends SAXHandler {

/**
* Public constructor.
* @param factory The Factory to use to create content instances
*/
public FragmentHandler(JDOMFactory factory) {
super(factory);
Expand Down
12 changes: 12 additions & 0 deletions core/src/java/org/jdom2/transform/XSLTransformException.java
Expand Up @@ -63,13 +63,25 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
*/
public class XSLTransformException extends JDOMException {

/**
* A new and default XSLTransformException
*/
public XSLTransformException() {
}

/**
* A new XSLTransformException with the specified message
* @param message The message for the exception
*/
public XSLTransformException(String message) {
super(message);
}

/**
* A new XSLTransformException with the specified message and cause
* @param message The message for the exception
* @param cause This exception's cause.
*/
public XSLTransformException(String message, Exception cause) {
super(message, cause);
}
Expand Down

0 comments on commit dd6ff07

Please sign in to comment.