Class ToolchainsBuildingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.maven.toolchain.building.ToolchainsBuildingException
-
- All Implemented Interfaces:
java.io.Serializable
public class ToolchainsBuildingException extends java.lang.Exception
- Since:
- 3.3.0
- See Also:
- Serialized Form
-
-
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)
-
-
-
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 benull
.
-
-