aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/main/java/org/apache/velocity/exception
diff options
context:
space:
mode:
authorClaude Brisson <cbrisson@apache.org>2019-03-11 11:09:53 +0000
committerClaude Brisson <cbrisson@apache.org>2019-03-11 11:09:53 +0000
commitcff1b533e2eed743724dbb667cdffd186436e50d (patch)
tree651396cd1d10187b63bc8871d91f98ecfc8fe794 /velocity-engine-core/src/main/java/org/apache/velocity/exception
parent475102e1a631ef896f85db7f750533211b9d0b11 (diff)
downloadapache-velocity-engine-cff1b533e2eed743724dbb667cdffd186436e50d.tar.gz
[engine] javadoc and indentation fixes
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1855206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'velocity-engine-core/src/main/java/org/apache/velocity/exception')
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/exception/MethodInvocationException.java10
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/exception/ParseErrorException.java2
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/exception/ResourceNotFoundException.java4
3 files changed, 12 insertions, 4 deletions
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/exception/MethodInvocationException.java b/velocity-engine-core/src/main/java/org/apache/velocity/exception/MethodInvocationException.java
index c38077fa..0c16bc33 100644
--- a/velocity-engine-core/src/main/java/org/apache/velocity/exception/MethodInvocationException.java
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/exception/MethodInvocationException.java
@@ -51,10 +51,12 @@ public class MethodInvocationException extends VelocityException implements Exte
* CTOR - wraps the passed in exception for
* examination later
*
- * @param message
- * @param e Throwable that we are wrapping
- * @param methodName name of method that threw the exception
- * @param templateName The name of the template where the exception occurred.
+ * @param message
+ * @param e Throwable that we are wrapping
+ * @param methodName name of method that threw the exception
+ * @param templateName The name of the template where the exception occurred
+ * @param lineNumber line number
+ * @param columnNumber column number
*/
public MethodInvocationException(final String message, final Throwable e, final String methodName, final String templateName, final int lineNumber, final int columnNumber)
{
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/exception/ParseErrorException.java b/velocity-engine-core/src/main/java/org/apache/velocity/exception/ParseErrorException.java
index faba2ae1..824675c4 100644
--- a/velocity-engine-core/src/main/java/org/apache/velocity/exception/ParseErrorException.java
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/exception/ParseErrorException.java
@@ -86,6 +86,7 @@ public class ParseErrorException extends VelocityException
* Create a ParseErrorException with the given ParseException.
*
* @param pex the parsing exception
+ * @param templName
* @since 1.5
*/
public ParseErrorException(ParseException pex, String templName)
@@ -133,6 +134,7 @@ public class ParseErrorException extends VelocityException
* Create a ParseErrorException with the given ParseException.
*
* @param pex the parsing exception
+ * @param templName
* @since 1.5
*/
public ParseErrorException(VelocityException pex, String templName)
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/exception/ResourceNotFoundException.java b/velocity-engine-core/src/main/java/org/apache/velocity/exception/ResourceNotFoundException.java
index f900380d..807acb02 100644
--- a/velocity-engine-core/src/main/java/org/apache/velocity/exception/ResourceNotFoundException.java
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/exception/ResourceNotFoundException.java
@@ -39,6 +39,7 @@ public class ResourceNotFoundException extends VelocityException
private static final long serialVersionUID = -4287732191458420347L;
/**
+ * @param exceptionMessage
* @see VelocityException#VelocityException(String)
*/
public ResourceNotFoundException(final String exceptionMessage)
@@ -47,6 +48,8 @@ public class ResourceNotFoundException extends VelocityException
}
/**
+ * @param exceptionMessage
+ * @param t
* @see VelocityException#VelocityException(String, Throwable)
* @since 1.5
*/
@@ -56,6 +59,7 @@ public class ResourceNotFoundException extends VelocityException
}
/**
+ * @param t
* @see VelocityException#VelocityException(Throwable)
* @since 1.5
*/