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

com.kapil.framework.exception.impl.ConfigurationException Maven / Gradle / Ivy

Go to download

This is a set of utilities and classes that I have found useful over the years. In my career spanning over a decade, I have time and again written the same code or some part of the code over and over again. I never found the time to collate the details in a reusable library. This project will be a collection of such files. The work that I have been doing is more than 5 years old, however the project has been conceived in 2011.

There is a newer version: 1.2.1
Show newest version
/*******************************************************************************
 * Copyright 2011 @ Kapil Viren Ahuja
 * 
 * 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.
 ******************************************************************************/
package com.kapil.framework.exception.impl;

import org.omg.CORBA.SystemException;

import com.kapil.framework.exception.BaseException;


/**
 * Thrown when a user requests an invalid data.
 */
public class ConfigurationException extends BaseException
{
    public static final String SPRING_INJECTION = "SPRING_INJECTION";
    public static final String INVALID_CONFIGURATION = "INVALID_CONFIGURATION";
    public static final String DATABASE_CONNECTION_REFUSED = "DATABASE_CONNECTION_REFUSED";

    
    private static final long serialVersionUID = -7565819688893505391L;

    /**
     * @see SystemException
     */
    public ConfigurationException(final String errorCode, final Throwable linkedException)
    {
        super(errorCode, linkedException);
    }

    /**
     * @see SystemException
     */
    public ConfigurationException(final String errorCode, final String[] errorMessageTokens, final Throwable linkedException)
    {
        super(errorCode, errorMessageTokens, linkedException);
    }
    
    
    /**
     * @see SystemException
     */
    public ConfigurationException(final String errorCode, final String[] tokens)
    {
        super(errorCode, tokens);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy