Class HintParseException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class HintParseException
    extends java.io.IOException
    An exception used when parsing a suppression rule file fails.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      HintParseException()
      Creates a new SuppressionParseException.
      HintParseException​(java.lang.String msg)
      Creates a new SuppressionParseException.
      HintParseException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new SuppressionParseException.
      HintParseException​(java.lang.Throwable ex)
      Creates a new SuppressionParseException.
    • Method Summary

      • 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

      • HintParseException

        public HintParseException()
        Creates a new SuppressionParseException.
      • HintParseException

        public HintParseException​(java.lang.String msg)
        Creates a new SuppressionParseException.
        Parameters:
        msg - a message for the exception.
      • HintParseException

        public HintParseException​(java.lang.Throwable ex)
        Creates a new SuppressionParseException.
        Parameters:
        ex - the cause of the parse exception
      • HintParseException

        public HintParseException​(java.lang.String msg,
                                  java.lang.Throwable ex)
        Creates a new SuppressionParseException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the parse exception