Class ErrorServiceImpl
- java.lang.Object
-
- org.jvnet.hk2.testing.junit.internal.ErrorServiceImpl
-
- All Implemented Interfaces:
ErrorService
@Singleton public class ErrorServiceImpl extends java.lang.Object implements ErrorService
-
-
Constructor Summary
Constructors Constructor Description ErrorServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonFailure(ErrorInformation ei)This method is called when a failure occurs in the system.
-
-
-
Method Detail
-
onFailure
public void onFailure(ErrorInformation ei) throws MultiException
Description copied from interface:ErrorServiceThis method is called when a failure occurs in the system. This method may use anyServiceLocatorapi. For example, an implementation of this method might want to remove a descriptor from the registry if the error can be determined to be a permanent failure.- Specified by:
onFailurein interfaceErrorService- Parameters:
ei- Information about the error that occurred- Throws:
MultiException- if this method throws an exception that exception will be thrown back to the caller wrapped in another MultiException if the error is of typeErrorType.FAILURE_TO_REIFY. If the error is of typeErrorType.DYNAMIC_CONFIGURATION_FAILUREorErrorType.SERVICE_CREATION_FAILUREorErrorType.SERVICE_DESTRUCTION_FAILUREthen any exception thrown from this method is ignored and the original exception is thrown back to the caller
-
-