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
99 class _LIBCPP_EXCEPTION_ABI exception
102 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
103 _LIBCPP_INLINE_VISIBILITY exception(const exception&) _NOEXCEPT = default;
105 virtual ~exception() _NOEXCEPT;
110 : public exception