Skip to content
Snippets Groups Projects
Select Git revision
  • remove-@dates
  • master default protected
  • 4.5
  • dynamic-striated
  • occbin
  • exo_steady_state
  • filter_initial_state
  • declare_vars_in_model_block
  • exceptions
  • rmExtraExo
  • julia
  • error_msg_undeclared_model_vars
  • vec_str
  • static_aux_vars
  • slice
  • aux_func
  • penalty
  • 4.4
  • temporary_terms
  • separateM_
  • estim_params
  • 4.5.6
  • 4.5.5
  • 4.5.4
  • 4.5.3
  • 4.5.2
  • 4.5.1
  • 4.5.0
  • 4.4.3
  • 4.4.2
  • 4.4.1
  • 4.4.0
  • 4.4-beta1
  • 4.3.3
  • 4.3.2
  • 4.3.1
  • 4.3.0
  • 4.2.5
  • 4.2.4
  • 4.2.3
  • 4.2.2
41 results

dynare_params.cpp

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    dynare_exception.h 1.00 KiB
    // Copyright (C) 2006, Ondra Kamenik
    
    // $Id: dynare_exception.h 853 2006-08-01 08:42:42Z kamenik $
    
    #ifndef DYNARE_EXCEPTION_H
    #define DYNARE_EXCEPTION_H
    
    #include <string>
    
    class DynareException {
    	char* mes;
    public:
    	DynareException(const char* m, const char* fname, int line, int col)
    		{
    			mes = new char[strlen(m) + strlen(fname) + 100];
    			sprintf(mes, "Parse error at %s, line %d, column %d: %s", fname, line, col, m);
    		}
    	DynareException(const char* fname, int line, const std::string& m)
    		{
    			mes = new char[m.size() + strlen(fname) + 50];
    			sprintf(mes, "%s:%d: %s", fname, line, m.c_str());
    		}
    	DynareException(const char* m, int offset)
    		{
    			mes = new char[strlen(m) + 100];
    			sprintf(mes, "Parse error in provided string at offset %d: %s", offset, m);
    		}
    	DynareException(const DynareException& e)
    		: mes(new char[strlen(e.mes)+1])
    		{strcpy(mes, e.mes);}
    	virtual ~DynareException()
    		{delete [] mes;}
    	const char* message() const
    		{return mes;}
    };
    
    #endif
    
    // Local Variables:
    // mode:C++
    // End: