Gaudi Framework, version v23r5
Home
Generated: Wed Nov 28 2012
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
GaudiGSL
src
Components
GslErrorException.cpp
Go to the documentation of this file.
1
// $Id: GslErrorException.cpp,v 1.2 2006/01/10 20:00:05 hmd Exp $
2
// ============================================================================
3
// ============================================================================
4
// Include files
5
// from Gaudi
6
#include "
GaudiKernel/ToolFactory.h
"
7
#include "
GaudiKernel/MsgStream.h
"
8
#include "
GaudiKernel/GaudiException.h
"
9
// STD & STL
10
#include <
algorithm
>
11
#include <
sstream
>
12
// local
13
#include "
GslErrorException.h
"
14
15
// ============================================================================
23
// ============================================================================
24
25
// ============================================================================
31
// ============================================================================
32
33
// ============================================================================
39
// ============================================================================
40
GslErrorException::GslErrorException
41
(
const
std::string
&
type
,
42
const
std::string
& name ,
43
const
IInterface
* parent )
44
:
base_class
( type, name , parent )
45
, m_ignore ()
46
{
47
declareProperty (
"IgnoreCodes"
, m_ignore );
48
}
49
// ============================================================================
50
51
// ============================================================================
53
// ============================================================================
54
GslErrorException::~GslErrorException
(){}
55
// ============================================================================
56
57
// ============================================================================
64
// ============================================================================
65
StatusCode
GslErrorException::handle
66
(
const
GslError
& error )
const
67
{
68
StatusCode
sc
=
StatusCode::SUCCESS
;
69
// code to be ignored?
70
if
( m_ignore.end() !=
std::find
( m_ignore.begin () ,
71
m_ignore.end () ,
72
error.
code
) ) {
return
sc
; }
73
//
74
std::ostringstream
message;
75
message <<
" GSL ErrorCode="
76
<< error.
code
<<
": '"
<< error.
reason
<<
"' in the file '"
77
<< error.
file
<<
"' at the line "
<< error.
line
;
78
throw
GaudiException
( message.str() ,
"*GLS Error*"
,
StatusCode::FAILURE
);
80
return
StatusCode::SUCCESS
;
81
}
82
// ============================================================================
83
84
DECLARE_TOOL_FACTORY
(
GslErrorException
)
85
86
// ============================================================================
87
// The END
88
// ============================================================================
Generated at Wed Nov 28 2012 12:17:12 for Gaudi Framework, version v23r5 by
Doxygen
version 1.8.2 written by
Dimitri van Heesch
, © 1997-2004