|
|
domain_error , invalid_argument , length_error , logic_error , out_of_range , overflow_error , range_error , runtime_error , underflow_error - defines several classes useful for reporting exceptions
namespace std { class logic_error; class domain_error; class invalid_argument; class length_error; class out_of_range; class runtime_error; class range_error; class overflow_error; class underflow_error; };
Include the standard header <stdexcept>
to define several classes used for reporting exceptions.
The classes form a derivation hierarchy, as indicated by the indenting
above, all derived from class
exception
.
class domain_error : public logic_error { public: domain_error(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report a
domain error. The value returned by
what()
is a copy of
what_arg.data()
.
class invalid_argument : public logic_error { public: invalid_argument(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report an invalid argument. The value returned by
what()
is a copy of
what_arg.data()
.
class length_error : public logic_error { public: length_error(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report an attempt to generate an object too long to be specified.
The value returned by
what()
is a copy of
what_arg.data()
.
class logic_error : public exception { public: logic_error(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report errors presumably detectable before the program executes,
such as violations of logical preconditions. The value returned by
what()
is a copy of
what_arg.data()
.
class out_of_range : public logic_error { public: out_of_range(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report an argument that is out of its valid range. The value returned by
what()
is a copy of
what_arg.data()
.
class overflow_error : public runtime_error { public: overflow_error(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report an arithmetic overflow. The value returned by
what()
is a copy of
what_arg.data()
.
class range_error : public runtime_error { public: range_error(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report a
range error. The value returned by
what()
is a copy of
what_arg.data()
.
class runtime_error : public exception { public: runtime_error(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report errors presumably detectable only when the program executes.
The value returned by
what()
is a copy of
what_arg.data()
.
class underflow_error : public runtime_error { public: underflow_error(const string& what_arg); };
The class serves as the base class for all exceptions thrown
to report an arithmetic underflow. The value returned by
what()
is a copy of
what_arg.data()
.
Copyright © 1992-1996 by P.J. Plauger. Portions derived from work copyright © 1994 by Hewlett-Packard Company. All rights reserved.