Class ProguardCoreException

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  ProguardCoreException.Builder
      Builder to construct ProguardCoreException objects.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getComponentErrorId()
      Returns the id for the error (exception).
      java.lang.Object[] getErrorParameters()
      Returns the list of information related to this error.
      • 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

      • ProguardCoreException

        public ProguardCoreException​(int componentErrorId,
                                     java.lang.Throwable cause,
                                     java.lang.String message,
                                     java.lang.Object... errorParameters)
        Main constructor, all other constructors need to call this one in order to do common things (formating string for instance). Same as ProguardCoreException(int, String, Object...) but takes a Throwable argument to initialize the cause.
    • Method Detail

      • getComponentErrorId

        public int getComponentErrorId()
        Returns the id for the error (exception).
      • getErrorParameters

        public java.lang.Object[] getErrorParameters()
        Returns the list of information related to this error.