first commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#ifndef __EXCEPTIONS_H__
|
||||
#define __EXCEPTIONS_H__
|
||||
|
||||
#include "vars.h"
|
||||
|
||||
class bad_parameter{
|
||||
public:
|
||||
|
||||
bad_parameter( CVars &out, const char *name );
|
||||
};
|
||||
|
||||
class err : public std::exception
|
||||
{
|
||||
|
||||
public:
|
||||
err( char *msg );
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user