1 /* 2 * Licensed to the Apache Software Foundation (ASF) under one or more 3 * contributor license agreements. See the NOTICE file distributed with this 4 * work for additional information regarding copyright ownership. The ASF 5 * licenses this file to You under the Apache License, Version 2.0 (the 6 * "License"); you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law 9 * or agreed to in writing, software distributed under the License is 10 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 11 * KIND, either express or implied. See the License for the specific language 12 * governing permissions and limitations under the License. 13 */ 14 package org.apache.webbeans.exception; 15 16 import org.apache.webbeans.exception.inject.DefinitionException; 17 18 /** 19 * Exception that is thrown by the web beans container at the intialization 20 * time. 21 * 22 * @author <a href="mailto:gurkanerdogdu@yahoo.com">Gurkan Erdogdu</a> 23 * @since 1.0 24 */ 25 public class WebBeansConfigurationException extends DefinitionException 26 { 27 28 private static final long serialVersionUID = 1863095663133791175L; 29 30 public WebBeansConfigurationException() 31 { 32 super(); 33 } 34 35 public WebBeansConfigurationException(String message) 36 { 37 super(message); 38 } 39 40 public WebBeansConfigurationException(Throwable e) 41 { 42 super(e); 43 } 44 45 public WebBeansConfigurationException(String message, Throwable e) 46 { 47 super(message, e); 48 } 49 50 }