stdexcept.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright 2010-2011 PathScale, Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * 1. Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. *
  10. * 2. Redistributions in binary form must reproduce the above copyright notice,
  11. * this list of conditions and the following disclaimer in the documentation
  12. * and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
  15. * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  16. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  17. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  18. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  19. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  20. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  21. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  22. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  23. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  24. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. /**
  27. * stdexcept.h - provides a stub version of <stdexcept>, which defines enough
  28. * of the exceptions for the runtime to use.
  29. */
  30. #include "cxxabi.h"
  31. namespace std
  32. {
  33. class exception
  34. {
  35. public:
  36. exception() _LIBCXXRT_NOEXCEPT;
  37. exception(const exception&) _LIBCXXRT_NOEXCEPT;
  38. exception& operator=(const exception&) _LIBCXXRT_NOEXCEPT;
  39. virtual ~exception() _LIBCXXRT_NOEXCEPT;
  40. virtual const char* what() const _LIBCXXRT_NOEXCEPT;
  41. };
  42. /**
  43. * Bad allocation exception. Thrown by ::operator new() if it fails.
  44. */
  45. class bad_alloc: public exception
  46. {
  47. public:
  48. bad_alloc() _LIBCXXRT_NOEXCEPT;
  49. bad_alloc(const bad_alloc&) _LIBCXXRT_NOEXCEPT;
  50. bad_alloc& operator=(const bad_alloc&) _LIBCXXRT_NOEXCEPT;
  51. ~bad_alloc() _LIBCXXRT_NOEXCEPT;
  52. virtual const char* what() const _LIBCXXRT_NOEXCEPT;
  53. };
  54. /**
  55. * Bad cast exception. Thrown by the __cxa_bad_cast() helper function.
  56. */
  57. class bad_cast: public exception {
  58. public:
  59. bad_cast() _LIBCXXRT_NOEXCEPT;
  60. bad_cast(const bad_cast&) _LIBCXXRT_NOEXCEPT;
  61. bad_cast& operator=(const bad_cast&) _LIBCXXRT_NOEXCEPT;
  62. virtual ~bad_cast() _LIBCXXRT_NOEXCEPT;
  63. virtual const char* what() const _LIBCXXRT_NOEXCEPT;
  64. };
  65. /**
  66. * Bad typeidexception. Thrown by the __cxa_bad_typeid() helper function.
  67. */
  68. class bad_typeid: public exception
  69. {
  70. public:
  71. bad_typeid() _LIBCXXRT_NOEXCEPT;
  72. bad_typeid(const bad_typeid &__rhs) _LIBCXXRT_NOEXCEPT;
  73. virtual ~bad_typeid() _LIBCXXRT_NOEXCEPT;
  74. bad_typeid& operator=(const bad_typeid &__rhs) _LIBCXXRT_NOEXCEPT;
  75. virtual const char* what() const _LIBCXXRT_NOEXCEPT;
  76. };
  77. class bad_array_new_length: public bad_alloc
  78. {
  79. public:
  80. bad_array_new_length() _LIBCXXRT_NOEXCEPT;
  81. bad_array_new_length(const bad_array_new_length&) _LIBCXXRT_NOEXCEPT;
  82. bad_array_new_length& operator=(const bad_array_new_length&) _LIBCXXRT_NOEXCEPT;
  83. virtual ~bad_array_new_length();
  84. virtual const char *what() const _LIBCXXRT_NOEXCEPT;
  85. };
  86. } // namespace std