Adobe Source Libraries 2.0.0
A collection of C++ libraries.
Loading...
Searching...
No Matches
exception.hpp
Go to the documentation of this file.
1/*
2 Copyright 2013 Adobe
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5*/
6/**************************************************************************************************/
7
8#ifndef ADOBE_EXCEPTION_HPP
9#define ADOBE_EXCEPTION_HPP
10
11#include <string>
12
13/**************************************************************************************************/
14
15namespace adobe {
16
17/**************************************************************************************************/
18
22[[noreturn]] void terminate(const char*);
23[[noreturn]] void terminate(const std::string&);
24
25/**************************************************************************************************/
26
27} // namespace adobe
28
29/**************************************************************************************************/
30
31#endif
32
33/**************************************************************************************************/
void terminate(const char *)