Lines Matching refs:exception
2 //===-------------------------- exception ---------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14 exception synopsis
19 class exception
22 exception() noexcept;
23 exception(const exception&) noexcept;
24 exception& operator=(const exception&) noexcept;
25 virtual ~exception() noexcept;
30 : public exception
97 class _LIBCPP_EXCEPTION_ABI exception
100 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
101 _LIBCPP_INLINE_VISIBILITY exception(const exception&) _NOEXCEPT = default;
103 virtual ~exception() _NOEXCEPT;
108 : public exception