CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
errors.ServerNotFoundException Class Reference
Inheritance diagram for errors.ServerNotFoundException:
Exception

Public Member Functions

def __init__ (self, server_name)
 
def __str__ (self)
 

Public Attributes

 server_name
 

Detailed Description

Definition at line 12 of file errors.py.

Constructor & Destructor Documentation

◆ __init__()

def errors.ServerNotFoundException.__init__ (   self,
  server_name 
)

Definition at line 13 of file errors.py.

13  def __init__(self, server_name):
14  self.server_name = server_name
15 
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)

Member Function Documentation

◆ __str__()

def errors.ServerNotFoundException.__str__ (   self)

Definition at line 16 of file errors.py.

References errors.ServerNotFoundException.server_name.

Referenced by edmStreamStallGrapher.Point.__repr__().

16  def __str__(self):
17  return "The server '%s' was not found." % self.server_name
18 

Member Data Documentation

◆ server_name

errors.ServerNotFoundException.server_name

Definition at line 14 of file errors.py.

Referenced by errors.ServerNotFoundException.__str__().