blob: 08374e912103066d4b7aa4e859aac4423e76d667 [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 */
crazyboblee9bb62022007-02-01 00:06:53 +000016
17package com.google.inject;
18
19/**
20 * Thrown when errors occurs while creating a {@link Container}. Includes a
crazyboblee7289ac12007-02-01 00:28:09 +000021 * list of encountered errors. Typically, a client should catch this exception,
22 * log it, and stop execution.
crazyboblee9bb62022007-02-01 00:06:53 +000023 *
24 * @author crazybob@google.com (Bob Lee)
25 */
26public class ContainerCreationException extends Exception {
27
28 public ContainerCreationException(String message) {
29 super(message);
30 }
31
32 public synchronized Throwable fillInStackTrace() {
33 // We don't care about this stack trace.
34 return null;
35 }
36}