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

com.jpattern.ioc.exception.ConfigException Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.jpattern.ioc.exception;
/**
 * 
 * @author Claudio Quaresima - [email protected] - 24/ott/08 17:02:15
 * @version $Id: $
 */
public class ConfigException extends Exception {

    public ConfigException() {
        super();
    }

    public ConfigException(String aMessage, Throwable aThrowable) {
        super(aMessage, aThrowable);
    }

    public ConfigException(String aMessage) {
        super(aMessage);
    }

    public ConfigException(Throwable aThrowable) {
        super(aThrowable);
    }

    private static final long serialVersionUID = 1L;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy