| java.lang.Object gnu.text.SourceError
SourceError | public class SourceError (Code) | | Represents an error message from processing a "source" file.
|
line | public int line(Code) | | The (1-origin) location of the error.
|
severity | public char severity(Code) | | The seriousness of the error - one of 'w' (for warning),
'e' (for error), or 'f' (for fatal error).
|
SourceError | public SourceError(char severity, String filename, int line, int column, String message)(Code) | | |
|
|