org.apache.maven.settings.building
Class SettingsBuildingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.maven.settings.building.SettingsBuildingException
All Implemented Interfaces:
Serializable

public class SettingsBuildingException
extends Exception

Signals one ore more errors during settings building. The settings builder tries to collect as many problems as possible before eventually failing to provide callers with rich error information. Use getProblems() to query the details of the failure.

Author:
Benjamin Bentmann
See Also:
Serialized Form

Constructor Summary
SettingsBuildingException(List<SettingsProblem> problems)
          Creates a new exception with the specified problems.
 
Method Summary
 List<SettingsProblem> getProblems()
          Gets the problems that caused this exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

SettingsBuildingException

public SettingsBuildingException(List<SettingsProblem> problems)
Creates a new exception with the specified problems.

Parameters:
problems - The problems that causes this exception, may be null.
Method Detail

getProblems

public List<SettingsProblem> getProblems()
Gets the problems that caused this exception.

Returns:
The problems that caused this exception, never null.


Copyright © 2001-2012 The Apache Software Foundation. All Rights Reserved.