os/ossrv/ossrv_pub/exceptions/inc/stdapis/stlport/stdexcept
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 *
sl@0
     4
 * Copyright (c) 1996,1997
sl@0
     5
 * Silicon Graphics Computer Systems, Inc.
sl@0
     6
 *
sl@0
     7
 * Copyright (c) 1999 
sl@0
     8
 * Boris Fomitchev
sl@0
     9
 *
sl@0
    10
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    11
 * or implied. Any use is at your own risk.
sl@0
    12
 *
sl@0
    13
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    14
 * without fee, provided the above notices are retained on all copies.
sl@0
    15
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    16
 * provided the above notices are retained, and a notice that the code was
sl@0
    17
 * modified is included with the above copyright notice.
sl@0
    18
 *
sl@0
    19
 */
sl@0
    20
sl@0
    21
sl@0
    22
# if !defined (_STLP_OUTERMOST_HEADER_ID)
sl@0
    23
#  define _STLP_OUTERMOST_HEADER_ID 0x63
sl@0
    24
#  include <stl/_prolog.h>
sl@0
    25
# elif (_STLP_OUTERMOST_HEADER_ID == 0x63) && ! defined (_STLP_DONT_POP_0x63)
sl@0
    26
#  define _STLP_DONT_POP_0x63
sl@0
    27
# endif
sl@0
    28
sl@0
    29
#ifndef _STLP_STDEXCEPT
sl@0
    30
#define _STLP_STDEXCEPT 1
sl@0
    31
sl@0
    32
# ifdef _STLP_PRAGMA_ONCE
sl@0
    33
#  pragma once
sl@0
    34
# endif
sl@0
    35
sl@0
    36
#if defined (_STLP_USE_TRAP_LEAVE)
sl@0
    37
sl@0
    38
enum {
sl@0
    39
  STDEX_bad_alloc			= -10000,
sl@0
    40
  STDEX_logic_error			= -10001,
sl@0
    41
  STDEX_runtime_error		= -10002,
sl@0
    42
  STDEX_domain_error		= -10003,
sl@0
    43
  STDEX_invalid_argument	= -10004,
sl@0
    44
  STDEX_length_error		= -10005,
sl@0
    45
  STDEX_out_of_range		= -10006,
sl@0
    46
  STDEX_range_error			= -10007,
sl@0
    47
  STDEX_overflow_error		= -10008,
sl@0
    48
  STDEX_underflow_error		= -10009
sl@0
    49
};
sl@0
    50
sl@0
    51
// User may override this
sl@0
    52
#ifndef STDEX_REPORT_EXCEPTION
sl@0
    53
# define STDEX_REPORT_EXCEPTION(x) 
sl@0
    54
#endif
sl@0
    55
sl@0
    56
#endif
sl@0
    57
sl@0
    58
# if !defined(_STLP_STDEXCEPT_SEEN) && \
sl@0
    59
   (!defined (_STLP_USE_NATIVE_STDEXCEPT) || defined (_STLP_USE_OWN_NAMESPACE))
sl@0
    60
sl@0
    61
#  define _STLP_STDEXCEPT_SEEN 1
sl@0
    62
sl@0
    63
#  include <exception>
sl@0
    64
sl@0
    65
#if defined(_STLP_USE_EXCEPTIONS) || \
sl@0
    66
    !(defined(_MIPS_SIM) && defined(_ABIO32) && _MIPS_SIM == _ABIO32)
sl@0
    67
sl@0
    68
# include <cstring>
sl@0
    69
sl@0
    70
#ifndef _STLP_INTERNAL_ALLOC_H
sl@0
    71
# include <stl/_alloc.h>
sl@0
    72
#endif
sl@0
    73
sl@0
    74
#ifndef _STLP_STRING_FWD_H
sl@0
    75
# include <stl/_string_fwd.h>
sl@0
    76
#endif
sl@0
    77
sl@0
    78
# define _STLP_OWN_STDEXCEPT 1
sl@0
    79
sl@0
    80
_STLP_BEGIN_NAMESPACE
sl@0
    81
sl@0
    82
# if   ! defined (_STLP_NO_EXCEPTION_HEADER)
sl@0
    83
# if !defined(_STLP_EXCEPTION_BASE) && !defined(_STLP_BROKEN_EXCEPTION_CLASS) && defined (_STLP_USE_NAMESPACES) && defined (_STLP_USE_OWN_NAMESPACE)
sl@0
    84
using _STLP_VENDOR_EXCEPT_STD::exception;
sl@0
    85
# endif
sl@0
    86
# endif
sl@0
    87
#  define _STLP_EXCEPTION_BASE exception
sl@0
    88
sl@0
    89
#ifdef __SYMBIAN32__
sl@0
    90
class __Named_exception : public _STLP_EXCEPTION_BASE {
sl@0
    91
#else
sl@0
    92
class _STLP_CLASS_DECLSPEC __Named_exception : public _STLP_EXCEPTION_BASE {
sl@0
    93
#endif //__SYMBIAN32__
sl@0
    94
public:
sl@0
    95
  _STLP_DECLSPEC __Named_exception(const string& __str) 
sl@0
    96
# ifdef _STLP_OWN_IOSTREAMS
sl@0
    97
    ;
sl@0
    98
  _STLP_DECLSPEC const char* what() const _STLP_NOTHROW_INHERENTLY;
sl@0
    99
  _STLP_DECLSPEC ~__Named_exception() _STLP_NOTHROW_INHERENTLY;
sl@0
   100
# else
sl@0
   101
  {
sl@0
   102
    strncpy(_M_name, __get_c_string(__str), _S_bufsize);
sl@0
   103
    _M_name[_S_bufsize - 1] = '\0';
sl@0
   104
  }
sl@0
   105
  const char* what() const _STLP_NOTHROW_INHERENTLY { return _M_name; }
sl@0
   106
# endif
sl@0
   107
sl@0
   108
private:
sl@0
   109
  enum { _S_bufsize = 256 };
sl@0
   110
  char _M_name[_S_bufsize];
sl@0
   111
};
sl@0
   112
sl@0
   113
#ifdef __SYMBIAN32__
sl@0
   114
class logic_error : public __Named_exception {
sl@0
   115
#else
sl@0
   116
class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception {
sl@0
   117
#endif
sl@0
   118
public:
sl@0
   119
  _STLP_DECLSPEC logic_error(const string& __s)
sl@0
   120
#ifdef __SYMBIAN32__
sl@0
   121
    ;
sl@0
   122
#else
sl@0
   123
   : __Named_exception(__s) {}
sl@0
   124
#endif
sl@0
   125
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   126
  _STLP_DECLSPEC ~logic_error() _STLP_NOTHROW_INHERENTLY;
sl@0
   127
# endif
sl@0
   128
};
sl@0
   129
sl@0
   130
#ifdef __SYMBIAN32__
sl@0
   131
class runtime_error : public __Named_exception {
sl@0
   132
#else
sl@0
   133
class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception {
sl@0
   134
#endif
sl@0
   135
public:
sl@0
   136
  _STLP_DECLSPEC runtime_error(const string& __s)
sl@0
   137
#ifdef __SYMBIAN32__
sl@0
   138
    ;
sl@0
   139
#else
sl@0
   140
   : __Named_exception(__s) {}
sl@0
   141
#endif
sl@0
   142
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   143
  _STLP_DECLSPEC ~runtime_error() _STLP_NOTHROW_INHERENTLY;
sl@0
   144
# endif
sl@0
   145
};
sl@0
   146
sl@0
   147
#ifdef __SYMBIAN32__
sl@0
   148
class domain_error : public logic_error {
sl@0
   149
#else
sl@0
   150
class _STLP_CLASS_DECLSPEC domain_error : public logic_error {
sl@0
   151
#endif
sl@0
   152
public:
sl@0
   153
  _STLP_DECLSPEC domain_error(const string& __arg)
sl@0
   154
#ifdef __SYMBIAN32__
sl@0
   155
    ;
sl@0
   156
#else
sl@0
   157
   : logic_error(__arg) {}
sl@0
   158
#endif
sl@0
   159
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   160
  _STLP_DECLSPEC ~domain_error() _STLP_NOTHROW_INHERENTLY;
sl@0
   161
# endif
sl@0
   162
};
sl@0
   163
sl@0
   164
#ifdef __SYMBIAN32__
sl@0
   165
class invalid_argument : public logic_error {
sl@0
   166
#else
sl@0
   167
class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error {
sl@0
   168
#endif
sl@0
   169
public:
sl@0
   170
  _STLP_DECLSPEC invalid_argument(const string& __arg)
sl@0
   171
#ifdef __SYMBIAN32__
sl@0
   172
    ;
sl@0
   173
#else
sl@0
   174
   : logic_error(__arg) {}
sl@0
   175
#endif
sl@0
   176
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   177
  _STLP_DECLSPEC ~invalid_argument() _STLP_NOTHROW_INHERENTLY;
sl@0
   178
# endif
sl@0
   179
};
sl@0
   180
sl@0
   181
#ifdef __SYMBIAN32__
sl@0
   182
class length_error : public logic_error {
sl@0
   183
#else
sl@0
   184
class _STLP_CLASS_DECLSPEC length_error : public logic_error {
sl@0
   185
#endif
sl@0
   186
public:
sl@0
   187
  _STLP_DECLSPEC length_error(const string& __arg)
sl@0
   188
#ifdef __SYMBIAN32__
sl@0
   189
    ;
sl@0
   190
#else
sl@0
   191
   : logic_error(__arg) {}
sl@0
   192
#endif
sl@0
   193
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   194
  _STLP_DECLSPEC ~length_error() _STLP_NOTHROW_INHERENTLY;
sl@0
   195
# endif
sl@0
   196
};
sl@0
   197
sl@0
   198
#ifdef __SYMBIAN32__
sl@0
   199
class out_of_range : public logic_error {
sl@0
   200
#else
sl@0
   201
class _STLP_CLASS_DECLSPEC out_of_range : public logic_error {
sl@0
   202
#endif
sl@0
   203
public:
sl@0
   204
  _STLP_DECLSPEC out_of_range(const string& __arg)
sl@0
   205
#ifdef __SYMBIAN32__
sl@0
   206
    ;
sl@0
   207
#else
sl@0
   208
   : logic_error(__arg) {}
sl@0
   209
#endif
sl@0
   210
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   211
  _STLP_DECLSPEC ~out_of_range() _STLP_NOTHROW_INHERENTLY;
sl@0
   212
# endif
sl@0
   213
};
sl@0
   214
sl@0
   215
#ifdef __SYMBIAN32__
sl@0
   216
class range_error : public runtime_error {
sl@0
   217
#else
sl@0
   218
class _STLP_CLASS_DECLSPEC range_error : public runtime_error {
sl@0
   219
#endif
sl@0
   220
public:
sl@0
   221
  _STLP_DECLSPEC range_error(const string& __arg)
sl@0
   222
#ifdef __SYMBIAN32__
sl@0
   223
    ;
sl@0
   224
#else
sl@0
   225
   : runtime_error(__arg) {}
sl@0
   226
#endif
sl@0
   227
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   228
  _STLP_DECLSPEC ~range_error() _STLP_NOTHROW_INHERENTLY;
sl@0
   229
# endif
sl@0
   230
};
sl@0
   231
sl@0
   232
#ifdef __SYMBIAN32__
sl@0
   233
class overflow_error : public runtime_error {
sl@0
   234
#else
sl@0
   235
class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error {
sl@0
   236
#endif
sl@0
   237
public:
sl@0
   238
  _STLP_DECLSPEC overflow_error(const string& __arg)
sl@0
   239
#ifdef __SYMBIAN32__
sl@0
   240
    ;
sl@0
   241
#else
sl@0
   242
   : runtime_error(__arg) {}
sl@0
   243
#endif
sl@0
   244
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   245
  _STLP_DECLSPEC ~overflow_error() _STLP_NOTHROW_INHERENTLY;
sl@0
   246
# endif
sl@0
   247
};
sl@0
   248
sl@0
   249
#ifdef __SYMBIAN32__
sl@0
   250
class underflow_error : public runtime_error {
sl@0
   251
#else
sl@0
   252
class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error {
sl@0
   253
#endif
sl@0
   254
public:
sl@0
   255
  _STLP_DECLSPEC underflow_error(const string& __arg)
sl@0
   256
#ifdef __SYMBIAN32__
sl@0
   257
    ;
sl@0
   258
#else
sl@0
   259
   : runtime_error(__arg) {}
sl@0
   260
#endif
sl@0
   261
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   262
  _STLP_DECLSPEC ~underflow_error() _STLP_NOTHROW_INHERENTLY;
sl@0
   263
# endif
sl@0
   264
};
sl@0
   265
sl@0
   266
_STLP_END_NAMESPACE
sl@0
   267
sl@0
   268
#endif /* Not o32, and no exceptions */
sl@0
   269
# endif /* _STLP_STDEXCEPT_SEEN */
sl@0
   270
sl@0
   271
sl@0
   272
#if defined (_STLP_USE_NATIVE_STDEXCEPT)
sl@0
   273
#  include _STLP_NATIVE_HEADER(stdexcept)
sl@0
   274
# endif
sl@0
   275
sl@0
   276
#endif /* _STLP_STDEXCEPT */
sl@0
   277
sl@0
   278
# if (_STLP_OUTERMOST_HEADER_ID == 0x63)
sl@0
   279
#  if ! defined (_STLP_DONT_POP_0x63)
sl@0
   280
#   include <stl/_epilog.h>
sl@0
   281
#   undef  _STLP_OUTERMOST_HEADER_ID
sl@0
   282
#   endif
sl@0
   283
#   undef  _STLP_DONT_POP_0x63
sl@0
   284
# endif
sl@0
   285
sl@0
   286
sl@0
   287
// Local Variables:
sl@0
   288
// mode:C++
sl@0
   289
// End:
sl@0
   290