Package com.io7m.changelog.parser.api
Interface CParseErrorType
-
- All Known Implementing Classes:
CParseError
@Immutable public interface CParseErrorTypeThe type of parse errors.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCParseErrorType.SeverityThe severity of the error.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<Exception>exception()com.io7m.jlexing.core.LexicalPosition<URI>lexical()Stringmessage()CParseErrorType.Severityseverity()
-
-
-
Method Detail
-
lexical
@Parameter com.io7m.jlexing.core.LexicalPosition<URI> lexical()
- Returns:
- The lexical position of the error
-
severity
@Parameter CParseErrorType.Severity severity()
- Returns:
- The severity of the error
-
message
@Parameter String message()
- Returns:
- The error message
-
-