Parent Directory
|
Revision Log
This is a commit to the trunk of the current windows version undergoing debugging. This trunk will shortly be moved to the branches area of the repository, and the saved trunk version currently over in branches restored to the trunk. Second try after resolving a conflict.
1 | |
2 | /* $Id$ */ |
3 | |
4 | /******************************************************* |
5 | * |
6 | * Copyright 2003-2007 by ACceSS MNRF |
7 | * Copyright 2007 by University of Queensland |
8 | * |
9 | * http://esscc.uq.edu.au |
10 | * Primary Business: Queensland, Australia |
11 | * Licensed under the Open Software License version 3.0 |
12 | * http://www.opensource.org/licenses/osl-3.0.php |
13 | * |
14 | *******************************************************/ |
15 | |
16 | #include "system_dep.h" |
17 | #include "esysExceptionTranslator.h" |
18 | #include <iostream> |
19 | |
20 | using namespace std; |
21 | |
22 | namespace esysUtils { |
23 | |
24 | void esysExceptionTranslator(const EsysException & e) |
25 | { |
26 | cout << "translated!\n"; |
27 | PyErr_SetString(PyExc_RuntimeError,e.what()); |
28 | } |
29 | |
30 | } // end of namespace |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Author Date Id Revision |
ViewVC Help | |
Powered by ViewVC 1.1.26 |