blob: bc65aa045cdaeb74fffdaab35236afc17b502c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "backend/String.h"
class Exception {
public:
Exception(const char * fmt, ...);
const char * what();
protected:
Exception() = default;
String error;
};
|