コード例 #1
0
ファイル: Config.py プロジェクト: wvengen/lgipilot
 def __init__(self,what):
     GangaException.__init__(self)
     self.what = what
コード例 #2
0
ファイル: IPostProcessor.py プロジェクト: mjmottram/ganga
 def __init__(self, x=''):
     GangaException.__init__(self, x)
コード例 #3
0
 def __init__(self, excpt, message):
     GangaException.__init__(self, excpt, message)
     self.message = message
     self.excpt = excpt
コード例 #4
0
ファイル: DiracUtilities.py プロジェクト: wireshark10/ganga
 def __init__(self, message, dirac_id = None, job_id = None):
     GangaException.__init__(self, message)
     self.dirac_id = dirac_id
     self.job_id = job_id
コード例 #5
0
 def __init__(self, x=''):
     GangaException.__init__(self, x)
コード例 #6
0
ファイル: BoxRegistry.py プロジェクト: will-cern/ganga
 def __init__(self, what=''):
     GangaException.__init__(self, what)
     self.what = what
コード例 #7
0
 def __init__(self, message=''):
     GangaException.__init__(self, message)
     self.message = message
コード例 #8
0
ファイル: VStreamer.py プロジェクト: MannyMoo/ganga
 def __init__(self, excpt, message):
     GangaException.__init__(self, excpt, message)
     self.message = message
     self.excpt = excpt
コード例 #9
0
ファイル: ISplitter.py プロジェクト: Erni1619/ganga
    def __init__(self, x): GangaException.__init__(self, x)


class ISplitter(GangaObject):
コード例 #10
0
ファイル: Objects.py プロジェクト: milliams/ganga
 def __init__(self, txt=''):
     GangaException.__init__(self, txt)
     self.txt = txt