com.meliorbis.economics.infrastructure.SolverException Maven / Gradle / Ivy
package com.meliorbis.economics.infrastructure;
/**
* Base of the exception hierarchy to be used by the Solver framework
*/
public class SolverException extends Exception
{
public SolverException(String description_)
{
super(description_);
}
public SolverException(String description_, Throwable cause_)
{
super(description_, cause_);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy