Package org.camunda.bpm.engine.impl.juel
Class TreeBuilderException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.camunda.bpm.engine.ProcessEngineException
-
- org.camunda.bpm.engine.impl.javax.el.ELException
-
- org.camunda.bpm.engine.impl.juel.TreeBuilderException
-
- All Implemented Interfaces:
java.io.Serializable
public class TreeBuilderException extends ELException
Exception type thrown in build phase (scan/parse).- Author:
- Christoph Beck
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TreeBuilderException(java.lang.String expression, int position, java.lang.String encountered, java.lang.String expected, java.lang.String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getEncountered()
java.lang.String
getExpected()
java.lang.String
getExpression()
int
getPosition()
-
-
-
Method Detail
-
getExpression
public java.lang.String getExpression()
- Returns:
- the expression string
-
getPosition
public int getPosition()
- Returns:
- the error position
-
getEncountered
public java.lang.String getEncountered()
- Returns:
- the substring (or description) that has been encountered
-
getExpected
public java.lang.String getExpected()
- Returns:
- the substring (or description) that was expected
-
-