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

ru.greatbit.utils.exceptions.MathException Maven / Gradle / Ivy

package ru.greatbit.utils.exceptions;

/**
 * Created by azee on 5/15/14.
 */
public class MathException extends Exception {
    public MathException() {
        super();
    }

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


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


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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy