CARMA C++
UserException.idl
Go to the documentation of this file.
1 
10 #ifndef CARMA_UTIL_USEREXCEPTION_IDL
11 #define CARMA_UTIL_USEREXCEPTION_IDL
12 
13 module carma {
14 module util {
15 
75 exception UserException {
76  string errorMsg;
77  string fileName;
78  short lineNo;
79 };
80 
88 exception CancelException {
89  string errorMsg;
90  string fileName;
91  short lineNo;
92 };
93 
94 }; // End util module
95 }; // End carma module
96 #endif
Variant used specificaly for cancelling.
Generic Carma variant of CORBA::UserException.