com.google.inject
Class CreationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.google.inject.CreationException
- All Implemented Interfaces:
- java.io.Serializable
public class CreationException
- extends java.lang.RuntimeException
Thrown when errors occur while creating a Injector
. Includes a list
of encountered errors. Typically, a client should catch this exception, log
it, and stop execution.
- Author:
- crazybob@google.com (Bob Lee)
- See Also:
- Serialized Form
Constructor Summary |
CreationException(java.util.Collection<Message> errorMessages)
Constructs a new exception for the given errors. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CreationException
public CreationException(java.util.Collection<Message> errorMessages)
- Constructs a new exception for the given errors.
getMessage
public java.lang.String getMessage()
- Overrides:
getMessage
in class java.lang.Throwable
getErrorMessages
public java.util.Collection<Message> getErrorMessages()
- Gets the error messages which resulted in this exception.
Copyright © 2008. All Rights Reserved.