blob: a8a54c7348370dac93e92486da3860c614d8fc67 [file] [log] [blame]
// Copyright 2006 Google Inc. All Rights Reserved.
package com.google.inject;
/**
* Handles errors in the container.
*
* @author crazybob@google.com (Bob Lee)
*/
interface ErrorHandler {
/**
* Handles an error.
*/
void handle(String message);
/**
* Handles an error.
*/
void handle(String message, Object... arguments);
/**
* Handles an error.
*/
void handle(Throwable t);
}