//===---------------------------- exception.cpp ---------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #define _LIBCPP_BUILDING_LIBRARY #include #include namespace std { // exception exception::~exception() _NOEXCEPT { } const char* exception::what() const _NOEXCEPT { return "std::exception"; } // bad_exception bad_exception::~bad_exception() _NOEXCEPT { } const char* bad_exception::what() const _NOEXCEPT { return "std::bad_exception"; } // bad_alloc bad_alloc::bad_alloc() _NOEXCEPT { } bad_alloc::~bad_alloc() _NOEXCEPT { } const char* bad_alloc::what() const _NOEXCEPT { return "std::bad_alloc"; } // bad_array_new_length bad_array_new_length::bad_array_new_length() _NOEXCEPT { } bad_array_new_length::~bad_array_new_length() _NOEXCEPT { } const char* bad_array_new_length::what() const _NOEXCEPT { return "bad_array_new_length"; } } // std