StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StUCMException.cxx
1 /*
2  * @file StUCMException.cpp
3  * @author Stephen Tramer
4  *
5  * @(#)cpp/api:$Id: StUCMException.cxx,v 1.2 2010/03/30 20:05:36 fine Exp $
6  *
7  * See StUCMException.h for detals.
8  */
9 
10 #include <string>
11 
12 #include "StUCMException.h"
13 //using namespace TxLogging;
14 StUCMException::StUCMException(const std::string& description,
15  Severity severity)
16  : description_(description),
17  severity_(severity)
18 {} // EMPTY
19 
20 
21 StUCMException::StUCMException(Severity severity)
22  : severity_(severity)
23 {} // EMPTY
24 
25 
27 {} //EMPTY
28 
29 
30 std::string
32 {
33  return description_;
34 }
35 
36 
39 {
40  return severity_;
41 }
42 
43 
44 void
45 StUCMException::setDescription(const std::string& desc)
46 {
47  description_ = desc;
48 }
StUCMException(const std::string &description, Severity severity=ERROR)
virtual ~StUCMException()
virtual std::string getDescription() const
virtual Severity getSeverity() const