com.meliorbis.economics.infrastructure.simulation.SimulatorException 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.infrastructure.simulation;
import com.meliorbis.economics.infrastructure.SolverException;
/**
* Exception to be thrown when the simulator goes wrong
*/
public class SimulatorException extends SolverException
{
public SimulatorException(String description_)
{
super(description_);
}
public SimulatorException(String description_, Throwable cause_)
{
super(description_, cause_);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy