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

io.sprucehill.facebook.exceptions.GenericFacebookException Maven / Gradle / Ivy

The newest version!
package io.sprucehill.facebook.exceptions;

/**
 * @author Michael Duergner 
 */
public class GenericFacebookException extends Exception {

    public GenericFacebookException() {
    }

    public GenericFacebookException(String s) {
        super(s);
    }

    public GenericFacebookException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public GenericFacebookException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy