blob: 2017d69a9f73637d87f9548b03cbb4a591213149 [file] [log] [blame]
crazybobleeabc4dd02007-02-01 01:44:36 +00001/**
2 * Copyright (C) 2006 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
crazyboblee4727ee22007-01-30 03:13:38 +000016
limpbizkit916f5482008-04-16 20:51:14 +000017package com.google.inject.internal;
crazyboblee4727ee22007-01-30 03:13:38 +000018
limpbizkitdf98fcd2008-06-14 05:02:15 +000019import com.google.inject.spi.Message;
20
crazyboblee4727ee22007-01-30 03:13:38 +000021/**
kevinb9na2915a92007-02-28 06:20:30 +000022 * Handles errors in the Injector.
crazyboblee4727ee22007-01-30 03:13:38 +000023 *
24 * @author crazybob@google.com (Bob Lee)
25 */
limpbizkit916f5482008-04-16 20:51:14 +000026public interface ErrorHandler {
crazyboblee4727ee22007-01-30 03:13:38 +000027
28 /**
29 * Handles an error.
30 */
limpbizkitdf98fcd2008-06-14 05:02:15 +000031 void handle(Object source, ErrorMessage errorMessage);
crazyboblee4727ee22007-01-30 03:13:38 +000032
33 /**
limpbizkitdf98fcd2008-06-14 05:02:15 +000034 * Handles a user-reported error.
crazyboblee4727ee22007-01-30 03:13:38 +000035 */
limpbizkitdf98fcd2008-06-14 05:02:15 +000036 void handle(Message message);
crazyboblee4727ee22007-01-30 03:13:38 +000037}