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

com.github.kubatatami.judonetworking.observers.ExceptionHandler Maven / Gradle / Ivy

The newest version!
package com.github.kubatatami.judonetworking.observers;

/**
 * Created by Kuba on 13/05/14.
 */
public class ExceptionHandler {

    public static void throwRuntimeException(Exception e){
        if(e instanceof RuntimeException){
            throw (RuntimeException)e;
        }else {
            throw new RuntimeException(e);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy