All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lonepulse.icklebot.injector.InjectionException Maven / Gradle / Ivy

package com.lonepulse.icklebot.injector;

import com.lonepulse.icklebot.IckleBotRuntimeException;

/*
 * #%L
 * IckleBot
 * %%
 * Copyright (C) 2013 Lonepulse
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */


/**
 * 

A {@link RuntimeException} which signals an unexpected failure * in an {@link Injector}. These are usually unrecoverable and as such * must be notified to the user in a polite manner.

* * @version 1.0.0 *

* @author Lahiru Sahan Jayasinghe */ public class InjectionException extends IckleBotRuntimeException { private static final long serialVersionUID = -119897488609677998L; /** * See {@link IckleBotRuntimeException#IckleBotRuntimeException()} */ public InjectionException() { } /** * See {@link RuntimIckleBotRuntimeExceptioneException#IckleBotRuntimeException(String)} */ public InjectionException(String detailMessage) { super(detailMessage); } /** * See {@link IckleBotRuntimeException#IckleBotRuntimeException(Throwable)} */ public InjectionException(Throwable throwable) { super(throwable); } /** * See {@link IckleBotRuntimeException#IckleBotRuntimeException(String, Throwable)} */ public InjectionException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy