summaryrefslogtreecommitdiff
path: root/source/LoG/utils/exception.h
blob: 16a6edafbea3464e08892e7ec7a24d7dba29c8e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __FFH_EXCEPTION_H__
#define __FFH_EXCEPTION_H__

#include <exception>

class Exception : public std::exception
{
public:

	Exception();
	~Exception();

	const char* what();

};

#endif