Class ParseException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ParseException
    extends ProtocolException
    Signals a protocol exception due to failure to parse a message element.
    Since:
    4.0
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getErrorOffset()  
      • 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
    • Field Detail

      • errorOffset

        private final int errorOffset
    • Constructor Detail

      • ParseException

        public ParseException()
        Creates a ParseException without details.
      • ParseException

        public ParseException​(java.lang.String message)
        Creates a ParseException with a detail message.
        Parameters:
        message - the exception detail message, or null
      • ParseException

        public ParseException​(java.lang.String description,
                              java.lang.CharSequence text,
                              int off,
                              int len,
                              int errorOffset)
        Creates a ParseException with parsing context details.
        Since:
        5.0
      • ParseException

        public ParseException​(java.lang.String description,
                              java.lang.CharSequence text,
                              int off,
                              int len)
        Creates a ParseException with parsing context details.
        Since:
        5.0
    • Method Detail

      • getErrorOffset

        public int getErrorOffset()
        Since:
        5.0