Searched refs:logic_error (Results 1 – 2 of 2) sorted by relevance
33 class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception {35 logic_error(const string& __s) : __Named_exception(__s) {} in logic_error() function37 ~logic_error() _STLP_NOTHROW_INHERENTLY;49 class _STLP_CLASS_DECLSPEC domain_error : public logic_error {51 domain_error(const string& __arg) : logic_error(__arg) {} in domain_error()57 class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error {59 invalid_argument(const string& __arg) : logic_error(__arg) {} in invalid_argument()65 class _STLP_CLASS_DECLSPEC length_error : public logic_error {67 length_error(const string& __arg) : logic_error(__arg) {} in length_error()73 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error {[all …]
76 logic_error::~logic_error() _STLP_NOTHROW_INHERENTLY {} in ~logic_error()