ROOT_Application  2.0
C++ Core modules and GUIStock
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GUIException.cxx
Go to the documentation of this file.
1 
9 #include "GUIException.h"
10 
11 // constructor
12 GUIException::GUIException( const std::string & mMsg ) :
13  std::exception(), mGUIMsg( mMsg )
14 {
15 #ifdef DEBUG
16  std::cout << "Constructor GUIException with message " << mGUIMsg << std::endl;
17 #endif
18 }
std::string mGUIMsg
Definition: GUIException.h:42