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

com.googlecode.refit.runner.FitException Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.googlecode.refit.runner;

public class FitException extends RuntimeException {
    
    private static final long serialVersionUID = 2339653105974921247L;

    public FitException() {
    }    
    
    public FitException(String msg) {
        super(msg);
    }
    
    
    public FitException(Throwable exc) {
        super(exc);
    }
    
    public FitException(String msg, Throwable exc) {
        super(msg, exc);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy