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

com.meliorbis.economics.infrastructure.simulation.SimulatorException Maven / Gradle / Ivy

Go to download

A library for solving economic models, particularly macroeconomic models with heterogeneous agents who have model-consistent expectations

There is a newer version: 1.1
Show newest version
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