aboutsummaryrefslogtreecommitdiff
path: root/backend/Exception.h
blob: 93af96ea38db08377262ae4c02249965b16f13f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "String.h"

class Exception {
public:
	Exception(const char * fmt, ...);
	const char * what();

protected:
	Exception() = default;
	String error;
};