Class InitializationError

    • Constructor Summary

      Constructors 
      Constructor Description
      InitializationError​(java.lang.String string)
      Construct a new InitializationError with one cause with message string
      InitializationError​(java.lang.Throwable error)  
      InitializationError​(java.util.List<java.lang.Throwable> errors)
      Construct a new InitializationError with one or more errors errors as causes
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<java.lang.Throwable> getCauses()
      Returns one or more Throwables that led to this initialization 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

      • InitializationError

        public InitializationError​(java.util.List<java.lang.Throwable> errors)
        Construct a new InitializationError with one or more errors errors as causes
      • InitializationError

        public InitializationError​(java.lang.String string)
        Construct a new InitializationError with one cause with message string
    • Method Detail

      • getCauses

        public java.util.List<java.lang.Throwable> getCauses()
        Returns one or more Throwables that led to this initialization error.