summaryrefslogtreecommitdiff
path: root/Runtime/Utilities/Exception.h
blob: 3795bc65a837616d725f9a856a4c41a73af1a9de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include <exception>

#define CustomException(Name) \
class Name : public std::exception	  \
{												  \
public:											  \
	Name(const char* what)			  \
		: std::exception(what)					  \
	{											  \
	}											  \
}