Kylin/Universal/Private/PromiseException.h

10 lines
187 B
C
Raw Normal View History

2024-09-15 16:15:26 +08:00
#ifndef __PROMISEEXCEPTION_H__
#define __PROMISEEXCEPTION_H__
#include <exception>
class PromiseUndefinedException : public std::exception {
public:
};
#endif // __PROMISEEXCEPTION_H__