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

com.sigopt.exception.SigoptException Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.sigopt.exception;

public abstract class SigoptException extends Exception {
    private static final long serialVersionUID = 1L;

    public SigoptException(String message) {
        super(message, null);
    }

    public SigoptException(String message, Throwable e) {
        super(message, e);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy