Class ToolchainsBuildingException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ToolchainsBuildingException
    extends java.lang.Exception
    Since:
    3.3.0
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.List<Problem> problems  
    • Constructor Summary

      Constructors 
      Constructor Description
      ToolchainsBuildingException​(java.util.List<Problem> problems)
      Creates a new exception with the specified problems.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<Problem> getProblems()
      Gets the problems that caused this exception.
      private static java.lang.String toMessage​(java.util.List<Problem> problems)  
      • 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

      • problems

        private final java.util.List<Problem> problems
    • Constructor Detail

      • ToolchainsBuildingException

        public ToolchainsBuildingException​(java.util.List<Problem> problems)
        Creates a new exception with the specified problems.
        Parameters:
        problems - The problems that causes this exception, must not be null.
    • Method Detail

      • getProblems

        public java.util.List<Problem> getProblems()
        Gets the problems that caused this exception.
        Returns:
        The problems that caused this exception, never null.
      • toMessage

        private static java.lang.String toMessage​(java.util.List<Problem> problems)