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 15 class my_exception: public std::exception { }; 16 17 namespace 18 boost 19 { 20 void throw_exception(std::exception const &)21 throw_exception( std::exception const & ) 22 { 23 exit(0); 24 } 25 } 26 27 int main()28main() 29 { 30 boost::throw_exception(my_exception()); 31 return 1; 32 } 33