Uses of Class
net.aethersanctum.curlyml.SyntaxException.Reason

Packages that use SyntaxException.Reason
net.aethersanctum.curlyml   
 

Uses of SyntaxException.Reason in net.aethersanctum.curlyml
 

Methods in net.aethersanctum.curlyml that return SyntaxException.Reason
 SyntaxException.Reason SyntaxException.getReason()
          obtain the reason why the parsing failed.
static SyntaxException.Reason SyntaxException.Reason.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SyntaxException.Reason[] SyntaxException.Reason.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Constructors in net.aethersanctum.curlyml with parameters of type SyntaxException.Reason
SyntaxException(SyntaxException.Reason r, int line, int column)
          SyntaxExceptions must be created with a reason why parsing failed, as well as a location in the input stream indicating where the failure occurred (which can be gotten from the Scanner).