Package com.atlassian.bamboo.logger
Interface AdminErrorHandler
-
- All Known Implementing Classes:
AdminErrorHandlerImpl
public interface AdminErrorHandler
Describes an abstraction for dealing with errors that occur while building builds.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear()
Remove all errors from the handlerString
getError(String errorKey)
Obtain the specifed error from the handler.Map<String,String>
getErrors()
Obtain all the errors recordedvoid
recordError(String errorKey, String message)
Record a errorvoid
removeError(String errorKey)
Remove a specific error from the handler.
-