Class TextFormat.UnknownFieldParseException

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    TextFormat

    public static class TextFormat.UnknownFieldParseException
    extends TextFormat.ParseException
    Thrown when encountering an unknown field while parsing a text format message.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UnknownFieldParseException​(int line, int column, java.lang.String unknownField, java.lang.String message)
      Create a new instance
      UnknownFieldParseException​(java.lang.String message)
      Create a new instance, with -1 as the line and column numbers, and an empty unknown field name.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getUnknownField()
      Return the name of the unknown field encountered while parsing the protocol buffer string.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • UnknownFieldParseException

        public UnknownFieldParseException​(java.lang.String message)
        Create a new instance, with -1 as the line and column numbers, and an empty unknown field name.
      • UnknownFieldParseException

        public UnknownFieldParseException​(int line,
                                          int column,
                                          java.lang.String unknownField,
                                          java.lang.String message)
        Create a new instance
        Parameters:
        line - the line number where the parse error occurred, using 1-offset.
        column - the column number where the parser error occurred, using 1-offset.
        unknownField - the name of the unknown field found while parsing.
    • Method Detail

      • getUnknownField

        public java.lang.String getUnknownField()
        Return the name of the unknown field encountered while parsing the protocol buffer string.