2 * Copyright (c) 1996,1997
3 * Silicon Graphics Computer Systems, Inc.
8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
11 * Permission to use or copy this software for any purpose is hereby granted
12 * without fee, provided the above notices are retained on all copies.
13 * Permission to modify the code and to distribute modified code is granted,
14 * provided the above notices are retained, and a notice that the code was
15 * modified is included with the above copyright notice.
19 #ifndef _STLP_INTERNAL_STDEXCEPT
20 #define _STLP_INTERNAL_STDEXCEPT
22 #ifndef _STLP_INTERNAL_STDEXCEPT_BASE
23 # include <stl/_stdexcept_base.h>
26 #if !defined (_STLP_USE_NATIVE_STDEXCEPT) || defined (_STLP_USE_OWN_NAMESPACE)
28 # if defined(_STLP_USE_EXCEPTIONS) || \
29 !(defined(_MIPS_SIM) && defined(_ABIO32) && (_MIPS_SIM == _ABIO32))
33 class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception {
35 logic_error(const string& __s) : __Named_exception(__s) {}
36 # ifndef _STLP_USE_NO_IOSTREAMS
37 _STLP_DECLSPEC ~logic_error() _STLP_NOTHROW_INHERENTLY;
41 class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception {
43 runtime_error(const string& __s) : __Named_exception(__s) {}
44 # ifndef _STLP_USE_NO_IOSTREAMS
45 _STLP_DECLSPEC ~runtime_error() _STLP_NOTHROW_INHERENTLY;
49 class _STLP_CLASS_DECLSPEC domain_error : public logic_error {
51 domain_error(const string& __arg) : logic_error(__arg) {}
52 # ifndef _STLP_USE_NO_IOSTREAMS
53 _STLP_DECLSPEC ~domain_error() _STLP_NOTHROW_INHERENTLY;
57 class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error {
59 invalid_argument(const string& __arg) : logic_error(__arg) {}
60 # ifndef _STLP_USE_NO_IOSTREAMS
61 _STLP_DECLSPEC ~invalid_argument() _STLP_NOTHROW_INHERENTLY;
65 class _STLP_CLASS_DECLSPEC length_error : public logic_error {
67 length_error(const string& __arg) : logic_error(__arg) {}
68 # ifndef _STLP_USE_NO_IOSTREAMS
69 _STLP_DECLSPEC ~length_error() _STLP_NOTHROW_INHERENTLY;
73 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error {
75 out_of_range(const string& __arg) : logic_error(__arg) {}
76 # ifndef _STLP_USE_NO_IOSTREAMS
77 _STLP_DECLSPEC ~out_of_range() _STLP_NOTHROW_INHERENTLY;
81 class _STLP_CLASS_DECLSPEC range_error : public runtime_error {
83 range_error(const string& __arg) : runtime_error(__arg) {}
84 # ifndef _STLP_USE_NO_IOSTREAMS
85 _STLP_DECLSPEC ~range_error() _STLP_NOTHROW_INHERENTLY;
89 class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error {
91 overflow_error(const string& __arg) : runtime_error(__arg) {}
92 # ifndef _STLP_USE_NO_IOSTREAMS
93 _STLP_DECLSPEC ~overflow_error() _STLP_NOTHROW_INHERENTLY;
97 class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error {
99 underflow_error(const string& __arg) : runtime_error(__arg) {}
100 # ifndef _STLP_USE_NO_IOSTREAMS
101 _STLP_DECLSPEC ~underflow_error() _STLP_NOTHROW_INHERENTLY;
110 #endif /* _STLP_INTERNAL_STDEXCEPT */