From c16f07429fdf1a10bf46a07effed3fe5fc89fd9f Mon Sep 17 00:00:00 2001 From: keita Date: Thu, 25 Feb 2021 18:24:01 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=93=E3=83=AB=E3=83=89=E3=81=8C=E9=80=9A?= =?UTF-8?q?=E3=82=89=E3=81=AA=E3=81=84=E3=82=B3=E3=83=BC=E3=83=89=E3=82=92?= =?UTF-8?q?push=E3=81=97=E3=81=A6=E7=94=B3=E3=81=97=E8=A8=B3=E3=81=94?= =?UTF-8?q?=E3=81=96=E3=81=84=E3=81=BE=E3=81=9B=E3=82=93.=20ver.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cocoatweet/api/model/tweet.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cocoatweet/api/model/tweet.cc b/src/cocoatweet/api/model/tweet.cc index 3760866..3ee397e 100644 --- a/src/cocoatweet/api/model/tweet.cc +++ b/src/cocoatweet/api/model/tweet.cc @@ -18,7 +18,7 @@ Tweet Tweet::parse(const unsigned int _responseCode, const std::string& _json) { if (error.get() == 144) { throw CocoaTweet::Exception::TweetNotFoundException(message.get().c_str()); }else if(error.get() == 32){ - throw CocoaTweet::Exception::AuthenticateFoundException(message.get().c_str()); + throw CocoaTweet::Exception::AuthenticateException(message.get().c_str()); } }