Uses of Class
edu.cs.ai.kreator.exceptions.ParsingErrorInfo.ErrorType

Packages that use ParsingErrorInfo.ErrorType
edu.cs.ai.kreator.exceptions   
edu.cs.ai.kreator.exceptions.runtime   
 

Uses of ParsingErrorInfo.ErrorType in edu.cs.ai.kreator.exceptions
 

Methods in edu.cs.ai.kreator.exceptions that return ParsingErrorInfo.ErrorType
 ParsingErrorInfo.ErrorType ParsingException.getErrorType()
           
 ParsingErrorInfo.ErrorType ParsingErrorInfo.getErrorType()
          Returns the type of the error.
static ParsingErrorInfo.ErrorType ParsingErrorInfo.ErrorType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ParsingErrorInfo.ErrorType[] ParsingErrorInfo.ErrorType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in edu.cs.ai.kreator.exceptions with parameters of type ParsingErrorInfo.ErrorType
ParsingException(int line, int column, java.lang.String description, ParsingErrorInfo.ErrorType errorType)
           
ParsingException(org.antlr.runtime.RecognitionException cause, java.lang.String description, ParsingErrorInfo.ErrorType errorType)
           
 

Uses of ParsingErrorInfo.ErrorType in edu.cs.ai.kreator.exceptions.runtime
 

Methods in edu.cs.ai.kreator.exceptions.runtime that return ParsingErrorInfo.ErrorType
 ParsingErrorInfo.ErrorType ParsingRuntimeException.getErrorType()
           
 

Constructors in edu.cs.ai.kreator.exceptions.runtime with parameters of type ParsingErrorInfo.ErrorType
ParsingRuntimeException(int line, int column, java.lang.String description, ParsingErrorInfo.ErrorType errorType)
           
ParsingRuntimeException(org.antlr.runtime.RecognitionException cause, java.lang.String description, ParsingErrorInfo.ErrorType errorType)