メジャーどこな例外クラスの作成

This commit is contained in:
keita
2021-02-23 11:53:32 +09:00
parent 255536209c
commit 5cebef5d9c
6 changed files with 78 additions and 0 deletions
@@ -0,0 +1,12 @@
#ifndef COCOATWEET_EXCEPTION_TWEETDUPLICATEEXCEPTION_H_
#define COCOATWEET_EXCEPTION_TWEETDUPLICATEEXCEPTION_H_
#include <cocoatweet/exception/exception.h>
namespace CocoaTweet::Exception{
class TweetDuplicateException final: Exception{
using Exception::Exception;
};
}
#endif