blob: ee4f13df0cfac93a4a586b71888f92363410163a [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(Throwable t);
}