jp.kobe_u.sugar.SugarException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331-sugar Show documentation
Show all versions of jsr331-sugar Show documentation
This is a JSR331 interface for the open source Java constraint programming library "Sugar" v. 2.1.3
The newest version!
package jp.kobe_u.sugar;
/**
* SugarException class.
* @author Naoyuki Tamura ([email protected])
*/
public class SugarException extends Exception {
private static final long serialVersionUID = 7879608175187039868L;
/**
* Constructs a SugarException object.
* @param message
*/
public SugarException(String message) {
super(message);
}
/**
* Constructs a SugarException object.
* @param message
* @param e
*/
public SugarException(String message, Exception e) {
super(message, e);
}
}