Salome HOME
Moved some functionality to VTKViewer_Utilities.h
[modules/kernel.git] / src / SALOMEGUI / SALOMEGUI_QtCatchCorbaException.cxx
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SALOMEGUI_QtCatchCorbaException.cxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SALOME
27 //  $Header$
28
29 #include "SALOMEGUI_QtCatchCorbaException.hxx"
30 #include "utilities.h"
31
32 #include "QAD_Desktop.h"
33 #include "QAD_MessageBox.h"
34 using namespace std;
35
36 void QtCatchCorbaException(const SALOME::SALOME_Exception & S_ex)
37 {
38   switch (S_ex.details.type)
39     {
40     case SALOME::COMM:
41     case SALOME::INTERNAL_ERROR:
42       {
43         QString str(S_ex.details.text);
44         QString source(S_ex.details.sourceFile);
45         QString line;
46         line.setNum(S_ex.details.lineNumber);
47         QString message = str + " \n" + source + " : " + line;
48         QAD_MessageBox::error1 
49           ( QAD_Application::getDesktop(),
50             QObject::tr ("Engine Error"),
51             message,
52             QObject::tr ("OK") );                   
53         break;
54       }
55
56     case SALOME::BAD_PARAM:
57       {
58         QString message(S_ex.details.text);
59 #ifdef _DEBUG_
60         QString source(S_ex.details.sourceFile);
61         QString line;
62         line.setNum(S_ex.details.lineNumber);
63         message = message + " \n" + source + " : " + line;
64 #endif
65         QAD_MessageBox::warn1 
66           ( QAD_Application::getDesktop(),
67             QObject::tr ("Engine Warning"),
68             message,
69             QObject::tr ("OK") );                   
70         break;
71       }
72     default:
73       {
74         QString str("SALOME CORBA Exception Type invalid");
75         QString source(S_ex.details.sourceFile);
76         QString line;
77         line.setNum(S_ex.details.lineNumber);
78         QString message = str + " \n" + source + " : " + line;
79         QAD_MessageBox::error1 
80           ( QAD_Application::getDesktop(),
81             QObject::tr ("Internal SALOME Error"),
82             message,
83             QObject::tr ("OK") );                   
84         break;
85       }
86     }
87 }