com.meliorbis.economics.model.ModelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ModelSolver Show documentation
Show all versions of ModelSolver Show documentation
A library for solving economic models, particularly
macroeconomic models with heterogeneous agents who have model-consistent
expectations
package com.meliorbis.economics.model;
import com.meliorbis.economics.infrastructure.SolverException;
/**
* Exception to be thrown by model classes
*/
public class ModelException extends SolverException
{
public ModelException(String description_)
{
super(description_);
}
public ModelException(String description_, Throwable cause_)
{
super(description_, cause_);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy