123
This commit is contained in:
180
STLPORT/stlport/stdexcept
Normal file
180
STLPORT/stlport/stdexcept
Normal file
@@ -0,0 +1,180 @@
|
||||
/*
|
||||
* Copyright (c) 1996,1997
|
||||
* Silicon Graphics Computer Systems, Inc.
|
||||
*
|
||||
* Copyright (c) 1999
|
||||
* Boris Fomitchev
|
||||
*
|
||||
* This material is provided "as is", with absolutely no warranty expressed
|
||||
* or implied. Any use is at your own risk.
|
||||
*
|
||||
* Permission to use or copy this software for any purpose is hereby granted
|
||||
* without fee, provided the above notices are retained on all copies.
|
||||
* Permission to modify the code and to distribute modified code is granted,
|
||||
* provided the above notices are retained, and a notice that the code was
|
||||
* modified is included with the above copyright notice.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _STLP_STDEXCEPT
|
||||
|
||||
# if !defined (_STLP_OUTERMOST_HEADER_ID)
|
||||
# define _STLP_OUTERMOST_HEADER_ID 0x63
|
||||
# include <stl/_prolog.h>
|
||||
# elif (_STLP_OUTERMOST_HEADER_ID == 0x63) && ! defined (_STLP_DONT_POP_0x63)
|
||||
# define _STLP_DONT_POP_0x63
|
||||
# endif
|
||||
|
||||
# ifdef _STLP_PRAGMA_ONCE
|
||||
# pragma once
|
||||
# endif
|
||||
|
||||
# if !defined(_STLP_STDEXCEPT_SEEN) && \
|
||||
(!defined (_STLP_USE_NATIVE_STDEXCEPT) || defined (_STLP_USE_OWN_NAMESPACE))
|
||||
|
||||
# define _STLP_STDEXCEPT_SEEN 1
|
||||
|
||||
# include <exception>
|
||||
|
||||
#if defined(_STLP_USE_EXCEPTIONS) || \
|
||||
!(defined(_MIPS_SIM) && defined(_ABIO32) && _MIPS_SIM == _ABIO32)
|
||||
|
||||
# include <cstring>
|
||||
|
||||
#ifndef _STLP_INTERNAL_ALLOC_H
|
||||
# include <stl/_alloc.h>
|
||||
#endif
|
||||
|
||||
#ifndef _STLP_STRING_FWD_H
|
||||
# include <stl/_string_fwd.h>
|
||||
#endif
|
||||
|
||||
# define _STLP_OWN_STDEXCEPT 1
|
||||
|
||||
_STLP_BEGIN_NAMESPACE
|
||||
|
||||
# if ! defined (_STLP_NO_EXCEPTION_HEADER)
|
||||
# if !defined(_STLP_EXCEPTION_BASE) && !defined(_STLP_BROKEN_EXCEPTION_CLASS) && defined (_STLP_USE_NAMESPACES) && defined (_STLP_USE_OWN_NAMESPACE)
|
||||
using _STLP_VENDOR_EXCEPT_STD::exception;
|
||||
# endif
|
||||
# endif
|
||||
# define _STLP_EXCEPTION_BASE exception
|
||||
|
||||
class _STLP_CLASS_DECLSPEC __Named_exception : public _STLP_EXCEPTION_BASE {
|
||||
public:
|
||||
__Named_exception(const string& __str)
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
;
|
||||
const char* what() const _STLP_NOTHROW_INHERENTLY;
|
||||
~__Named_exception() _STLP_NOTHROW_INHERENTLY;
|
||||
# else
|
||||
{
|
||||
strncpy(_M_name, __get_c_string(__str), _S_bufsize);
|
||||
_M_name[_S_bufsize - 1] = '\0';
|
||||
}
|
||||
const char* what() const _STLP_NOTHROW_INHERENTLY { return _M_name; }
|
||||
# endif
|
||||
|
||||
private:
|
||||
enum { _S_bufsize = 256 };
|
||||
char _M_name[_S_bufsize];
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception {
|
||||
public:
|
||||
logic_error(const string& __s) : __Named_exception(__s) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~logic_error() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception {
|
||||
public:
|
||||
runtime_error(const string& __s) : __Named_exception(__s) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~runtime_error() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC domain_error : public logic_error {
|
||||
public:
|
||||
domain_error(const string& __arg) : logic_error(__arg) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~domain_error() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error {
|
||||
public:
|
||||
invalid_argument(const string& __arg) : logic_error(__arg) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~invalid_argument() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC length_error : public logic_error {
|
||||
public:
|
||||
length_error(const string& __arg) : logic_error(__arg) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~length_error() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC out_of_range : public logic_error {
|
||||
public:
|
||||
out_of_range(const string& __arg) : logic_error(__arg) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~out_of_range() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC range_error : public runtime_error {
|
||||
public:
|
||||
range_error(const string& __arg) : runtime_error(__arg) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~range_error() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error {
|
||||
public:
|
||||
overflow_error(const string& __arg) : runtime_error(__arg) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~overflow_error() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error {
|
||||
public:
|
||||
underflow_error(const string& __arg) : runtime_error(__arg) {}
|
||||
# ifdef _STLP_OWN_IOSTREAMS
|
||||
~underflow_error() _STLP_NOTHROW_INHERENTLY;
|
||||
# endif
|
||||
};
|
||||
|
||||
_STLP_END_NAMESPACE
|
||||
|
||||
#endif /* Not o32, and no exceptions */
|
||||
# endif /* _STLP_STDEXCEPT_SEEN */
|
||||
|
||||
|
||||
#if defined (_STLP_USE_NATIVE_STDEXCEPT)
|
||||
# include _STLP_NATIVE_HEADER(stdexcept)
|
||||
# endif
|
||||
|
||||
# define _STLP_STDEXCEPT 1
|
||||
|
||||
# if (_STLP_OUTERMOST_HEADER_ID == 0x63)
|
||||
# if ! defined (_STLP_DONT_POP_0x63)
|
||||
# include <stl/_epilog.h>
|
||||
# undef _STLP_OUTERMOST_HEADER_ID
|
||||
# endif
|
||||
# undef _STLP_DONT_POP_0x63
|
||||
# endif
|
||||
|
||||
#endif /* _STLP_STDEXCEPT */
|
||||
|
||||
// Local Variables:
|
||||
// mode:C++
|
||||
// End:
|
||||
|
||||
Reference in New Issue
Block a user