stdexcept.cc 3.2 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.cc - provides stub implementations of the exceptions required by the runtime.
  28. */
  29. #include "stdexcept.h"
  30. namespace std {
  31. exception::exception() _LIBCXXRT_NOEXCEPT {}
  32. exception::~exception() _LIBCXXRT_NOEXCEPT {}
  33. exception::exception(const exception&) _LIBCXXRT_NOEXCEPT {}
  34. exception& exception::operator=(const exception&) _LIBCXXRT_NOEXCEPT
  35. {
  36. return *this;
  37. }
  38. const char* exception::what() const _LIBCXXRT_NOEXCEPT
  39. {
  40. return "std::exception";
  41. }
  42. bad_alloc::bad_alloc() _LIBCXXRT_NOEXCEPT {}
  43. bad_alloc::~bad_alloc() _LIBCXXRT_NOEXCEPT {}
  44. bad_alloc::bad_alloc(const bad_alloc&) _LIBCXXRT_NOEXCEPT {}
  45. bad_alloc& bad_alloc::operator=(const bad_alloc&) _LIBCXXRT_NOEXCEPT
  46. {
  47. return *this;
  48. }
  49. const char* bad_alloc::what() const _LIBCXXRT_NOEXCEPT
  50. {
  51. return "cxxrt::bad_alloc";
  52. }
  53. bad_cast::bad_cast() _LIBCXXRT_NOEXCEPT {}
  54. bad_cast::~bad_cast() _LIBCXXRT_NOEXCEPT {}
  55. bad_cast::bad_cast(const bad_cast&) _LIBCXXRT_NOEXCEPT {}
  56. bad_cast& bad_cast::operator=(const bad_cast&) _LIBCXXRT_NOEXCEPT
  57. {
  58. return *this;
  59. }
  60. const char* bad_cast::what() const _LIBCXXRT_NOEXCEPT
  61. {
  62. return "std::bad_cast";
  63. }
  64. bad_typeid::bad_typeid() _LIBCXXRT_NOEXCEPT {}
  65. bad_typeid::~bad_typeid() _LIBCXXRT_NOEXCEPT {}
  66. bad_typeid::bad_typeid(const bad_typeid &__rhs) _LIBCXXRT_NOEXCEPT {}
  67. bad_typeid& bad_typeid::operator=(const bad_typeid &__rhs) _LIBCXXRT_NOEXCEPT
  68. {
  69. return *this;
  70. }
  71. const char* bad_typeid::what() const _LIBCXXRT_NOEXCEPT
  72. {
  73. return "std::bad_typeid";
  74. }
  75. bad_array_new_length::bad_array_new_length() _LIBCXXRT_NOEXCEPT {}
  76. bad_array_new_length::~bad_array_new_length() {}
  77. bad_array_new_length::bad_array_new_length(const bad_array_new_length&) _LIBCXXRT_NOEXCEPT {}
  78. bad_array_new_length& bad_array_new_length::operator=(const bad_array_new_length&) _LIBCXXRT_NOEXCEPT
  79. {
  80. return *this;
  81. }
  82. const char* bad_array_new_length::what() const _LIBCXXRT_NOEXCEPT
  83. {
  84. return "std::bad_array_new_length";
  85. }
  86. } // namespace std