1 /*****************************************************************************/
2 /* Software Testing Automation Framework (STAF)                              */
3 /* (C) Copyright IBM Corp. 2001                                              */
4 /*                                                                           */
5 /* This software is licensed under the Eclipse Public License (EPL) V1.0.    */
6 /*****************************************************************************/
7 
8 #ifndef STAF_exception
9 #define STAF_exception
10 
11 #include <exception>
12 
13 #ifdef STAF_CONFIG_NoSTDSetTerminate
14 
15   #define STAF_set_terminate(f) set_terminate(f)
16 
17 #else
18 
19   #define STAF_set_terminate(f) std::set_terminate(f)
20 
21 #endif
22 
23 #endif
24