1//Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2
3//Distributed under the Boost Software License, Version 1.0. (See accompanying
4//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6#include <boost/config.hpp>
7
8#if !defined( BOOST_NO_EXCEPTIONS )
9# error This program requires exception handling disabled.
10#endif
11
12#include <boost/throw_exception.hpp>
13#include <stdlib.h>
14
15class my_exception: public std::exception { };
16
17namespace
18boost
19 {
20 void
21 throw_exception( std::exception const & )
22 {
23 exit(status: 0);
24 }
25 }
26
27int
28main()
29 {
30 boost::throw_exception(e: my_exception());
31 return 1;
32 }
33

source code of boost/libs/exception/test/2-throw_exception_no_exceptions_test.cpp