10 lines
187 B
C
10 lines
187 B
C
|
#ifndef __PROMISEEXCEPTION_H__
|
||
|
#define __PROMISEEXCEPTION_H__
|
||
|
|
||
|
#include <exception>
|
||
|
|
||
|
class PromiseUndefinedException : public std::exception {
|
||
|
public:
|
||
|
};
|
||
|
|
||
|
#endif // __PROMISEEXCEPTION_H__
|