first commit

This commit is contained in:
2019-05-31 11:26:35 -04:00
commit c403ba19f7
5075 changed files with 965209 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#include "exceptions.h"
#include "clog.h"
bad_parameter::bad_parameter( CVars &out, const char *name )
{
//in["bad_param"] = name;
out["bad_param"] = name;
logfmt( FLOG_MAX, "Bad parameter exception: '%s'", name );
}
err::err( char *msg ) {
logfmt( FLOG_MAX, "ERROR: %s", msg );
}