You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/include/ncpp/_exceptions.hh

47 lines
923 B
C++

#ifndef __NCPP_EXCEPTIONS_HH
#define __NCPP_EXCEPTIONS_HH
#include <stdexcept>
#include "_helpers.hh"
namespace ncpp
{
class NCPP_API_EXPORT init_error : public std::logic_error
{
public:
explicit init_error (const std::string& what_arg)
: logic_error (what_arg)
{}
explicit init_error (const char* what_arg)
: logic_error (what_arg)
{}
};
class NCPP_API_EXPORT invalid_state_error : public std::logic_error
{
public:
explicit invalid_state_error (const std::string& what_arg)
: logic_error (what_arg)
{}
explicit invalid_state_error (const char* what_arg)
: logic_error (what_arg)
{}
};
class NCPP_API_EXPORT invalid_argument : public std::invalid_argument
{
public:
explicit invalid_argument (const std::string& what_arg)
: std::invalid_argument (what_arg)
{}
explicit invalid_argument (const char* what_arg)
: std::invalid_argument (what_arg)
{}
};
}
#endif