Files
CocoaTweet/src/cocoatweet/exception/credentialNotAllowedException.h
T
2022-04-23 18:09:12 +09:00

13 lines
345 B
C++

#ifndef COCOATWEET_EXCEPTION_CREDENTIALNOTALLOWEDEXCEPTION_H_
#define COCOATWEET_EXCEPTION_CREDENTIALNOTALLOWEDEXCEPTION_H_
#include <cocoatweet/exception/exception.h>
namespace CocoaTweet::Exception {
class CredentialNotAllowedException final : public Exception {
using Exception::Exception;
};
} // namespace CocoaTweet::Exception
#endif