diff --git a/core/src/java/org/jdom2/transform/JDOMResult.java b/core/src/java/org/jdom2/transform/JDOMResult.java index 38a35d3eb..f3c53ffb2 100644 --- a/core/src/java/org/jdom2/transform/JDOMResult.java +++ b/core/src/java/org/jdom2/transform/JDOMResult.java @@ -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); diff --git a/core/src/java/org/jdom2/transform/XSLTransformException.java b/core/src/java/org/jdom2/transform/XSLTransformException.java index 69a66fde9..8b9a55877 100644 --- a/core/src/java/org/jdom2/transform/XSLTransformException.java +++ b/core/src/java/org/jdom2/transform/XSLTransformException.java @@ -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); }