basic認証用のプロバイダとベアラトークンを取得するためのエンドポイントアクセスを有効に

This commit is contained in:
keita
2022-04-23 18:00:41 +09:00
parent 560fe707a6
commit d99ba765aa
17 changed files with 300 additions and 67 deletions
@@ -0,0 +1,12 @@
#ifndef COCOATWEET_EXCEPTION_CREDETIALNOTALLOWEDEXCEPTION_H_
#define COCOATWEET_EXCEPTION_CREDETIALNOTALLOWEDEXCEPTION_H_
#include <cocoatweet/exception/exception.h>
namespace CocoaTweet::Exception {
class CredentialNotAllowedException final : public Exception {
using Exception::Exception;
};
} // namespace CocoaTweet::Exception
#endif