Main Page
Namespaces
Classes
Package Documentation
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
FWCore
ParameterSet
python
ExceptionHandling.py
Go to the documentation of this file.
1
import
inspect
2
3
4
class
ConfigError
(
Exception
):
5
"""the most basic Error for CMS config"""
6
pass
7
8
9
class
ModuleCloneError
(
ConfigError
):
10
pass
11
12
13
def
format_outerframe
(number):
14
"""formats the outer frame 'number' to output like:
15
In file foo.py, line 8:
16
process.aPath = cms.Path(module1*module2)
17
18
'number' is the number of frames to go back relative to caller.
19
"""
20
frame = inspect.stack()[number+1]
#+1 because this routine adds another call
21
return
"In file %s, line %s:\n %s"
%(frame[1], frame[2], frame[4][0])
22
23
24
def
format_typename
(object):
25
"""format the typename and return only the last part"""
26
return
str
(type(object)).
split
(
"'"
)[1].
split
(
"."
)[-1]
ExceptionHandling.format_typename
def format_typename
Definition:
ExceptionHandling.py:24
ExceptionHandling.ConfigError
Definition:
ExceptionHandling.py:4
Exception
ExceptionHandling.format_outerframe
def format_outerframe
Definition:
ExceptionHandling.py:13
str
#define str(s)
Definition:
TestProcessor.cc:53
submitPVValidationJobs.split
def split
Definition:
submitPVValidationJobs.py:352
ExceptionHandling.ModuleCloneError
Definition:
ExceptionHandling.py:9
Generated for CMSSW Reference Manual by
1.8.5