Class ParseException

java.lang.Object
java.lang.Throwable
java.lang.Exception
edu.wpi.first.util.struct.parser.ParseException
All Implemented Interfaces:
Serializable

public class ParseException extends Exception
Exception for parsing errors.
See Also:
  • Constructor Details

    • ParseException

      public ParseException(int pos, String s)
      Constructs a ParseException.
      Parameters:
      pos - The parser position.
      s - Reason for parse failure.
    • ParseException

      public ParseException(int pos, String message, Throwable cause)
      Constructs a ParseException.
      Parameters:
      pos - The parser position.
      message - Reason for parse failure.
      cause - Exception that caused the parser failure.
    • ParseException

      public ParseException(int pos, Throwable cause)
      Constructs a ParseException.
      Parameters:
      pos - The parser position.
      cause - Exception that caused the parser failure.
  • Method Details