CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Exception.h
Go to the documentation of this file.
1 // $Id: Exception.h,v 1.1 2008/07/01 13:22:26 ameyer Exp $
2 
3 /*************************************************************************
4  * XDAQ Components for Distributed Data Acquisition *
5  * Copyright (C) 2000-2004, CERN. *
6  * All rights reserved. *
7  * Authors: J. Gutleber and L. Orsini *
8  * *
9  * For the licensing terms see LICENSE. *
10  * For the list of contributors see CREDITS. *
11  *************************************************************************/
12 
13 #ifndef _xmas2dqm_wse_exception_Exception_h_
14 #define _xmas2dqm_wse_exception_Exception_h_
15 
16 #include "xmas/exception/Exception.h"
17 
18 
19 namespace xmas2dqm {
20  namespace wse {
21  namespace exception {
23  {
24  public:
25  Exception( std::string name, std::string message, std::string module, int line, std::string function ):
26  xmas::exception::Exception(name, message, module, line, function)
27  {}
28 
29  Exception( std::string name, std::string message, std::string module, int line, std::string function,
30  xcept::Exception& e ):
31  xmas::exception::Exception(name, message, module, line, function, e)
32  {}
33 
34  };
35  }
36  }
37 }
38 
39 #endif
Definition: vlib.h:257
Exception(std::string name, std::string message, std::string module, int line, std::string function)
Definition: Exception.h:25
Exception(std::string name, std::string message, std::string module, int line, std::string function, xcept::Exception &e)
Definition: Exception.h:29
Definition: vlib.h:209