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

com.daedafusion.sf.ServiceFrameworkException Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.daedafusion.sf;

import org.apache.log4j.Logger;

/**
 * Created by mphilpot on 7/2/14.
 */
public class ServiceFrameworkException extends RuntimeException
{
    private static final Logger log = Logger.getLogger(ServiceFrameworkException.class);

    public ServiceFrameworkException(String message)
    {
        super(message);
    }

    public ServiceFrameworkException(String message, Throwable cause)
    {
        super(message, cause);
    }

    public ServiceFrameworkException(Throwable cause)
    {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy