Home | History | Annotate | Download | only in stl

Lines Matching refs:logic_error

32 class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception {
34 logic_error(const string& __s) : __Named_exception(__s) {}
36 ~logic_error() _STLP_NOTHROW_INHERENTLY;
48 class _STLP_CLASS_DECLSPEC domain_error : public logic_error {
50 domain_error(const string& __arg) : logic_error(__arg) {}
56 class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error {
58 invalid_argument(const string& __arg) : logic_error(__arg) {}
64 class _STLP_CLASS_DECLSPEC length_error : public logic_error {
66 length_error(const string& __arg) : logic_error(__arg) {}
72 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error {
74 out_of_range(const string& __arg) : logic_error(__arg) {}