From f1c05a5c3896ec00bba31c464fe981d99a6033ec Mon Sep 17 00:00:00 2001 From: keita Date: Sat, 23 Apr 2022 20:55:04 +0900 Subject: [PATCH] =?UTF-8?q?exception=E3=81=AE=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../exception/credentialNotVerifiedException.h | 12 ++++++++++++ src/cocoatweet/exception/invalidateTokenException.h | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/cocoatweet/exception/credentialNotVerifiedException.h create mode 100644 src/cocoatweet/exception/invalidateTokenException.h diff --git a/src/cocoatweet/exception/credentialNotVerifiedException.h b/src/cocoatweet/exception/credentialNotVerifiedException.h new file mode 100644 index 0000000..186a1e8 --- /dev/null +++ b/src/cocoatweet/exception/credentialNotVerifiedException.h @@ -0,0 +1,12 @@ +#ifndef COCOATWEET_EXCEPTION_CREDENTIALNOTVERIFIEDEXCEPTION_H_ +#define COCOATWEET_EXCEPTION_CREDENTIALNOTVERIFIEDEXCEPTION_H_ + +#include + +namespace CocoaTweet::Exception { +class CredentialNotVerifiedException final : public Exception { + using Exception::Exception; +}; +} // namespace CocoaTweet::Exception + +#endif diff --git a/src/cocoatweet/exception/invalidateTokenException.h b/src/cocoatweet/exception/invalidateTokenException.h new file mode 100644 index 0000000..3ce180e --- /dev/null +++ b/src/cocoatweet/exception/invalidateTokenException.h @@ -0,0 +1,12 @@ +#ifndef COCOATWEET_EXCEPTION_INVALIDATETOKENEXCEPTION_H_ +#define COCOATWEET_EXCEPTION_INVALIDATETOKENEXCEPTION_H_ + +#include + +namespace CocoaTweet::Exception { +class InvalidateTokenException final : public Exception { + using Exception::Exception; +}; +} // namespace CocoaTweet::Exception + +#endif