當前位置: 首頁>>代碼示例>>Python>>正文


Python Exception.__init__方法代碼示例

本文整理匯總了Python中exceptions.Exception.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python Exception.__init__方法的具體用法?Python Exception.__init__怎麽用?Python Exception.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在exceptions.Exception的用法示例。


在下文中一共展示了Exception.__init__方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
    def __init__(self, status, msg):
        supermsg = 'Memcached error #' + repr(status)
        if msg:
            supermsg += ":  " + msg
        Exception.__init__(self, supermsg)

        self.status = status
        self.msg = msg
開發者ID:pavel-paulau,項目名稱:mc_bin_client,代碼行數:10,代碼來源:mc_bin_client.py

示例2: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, error, status, code=400, headers=None):
     Exception.__init__(self)
     if not isinstance(error, list):
         self.errors = [str(error)]
     else:
         self.errors = error
     self.code = code
     self.status = status
     self.headers = headers
開發者ID:gnu-user,項目名稱:sugar-nanny,代碼行數:11,代碼來源:error.py

示例3: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
  def __init__(self, **kwargs):
    """
    DBS exception can be initialized in following ways:
      DBSException(args=exceptionString)
      DBSException(exception=exceptionObject)      
    """ 
    args = kwargs.get("args", "")
    ex = kwargs.get("exception", None)
    if ex != None:
      if isinstance(ex, Exception):
	 exArgs = "%s" % (ex)
	 if args == "":
	   args = exArgs
	 else:
	   args = "%s (%s)" % (args, exArgs)
    Exception.__init__(self, args)
開發者ID:bbockelm,項目名稱:DBS,代碼行數:18,代碼來源:dbsException.py

示例4: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, extent):
     Exception.__init__(self)
     self.message = "Could not use: {0} as extent".format(extent)
開發者ID:RealworldSystems,項目名稱:rfgis,代碼行數:5,代碼來源:spatialfinder.py

示例5: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, sofar, numpreds, succs):
     Exception.__init__(self, "cycle in constraints", sofar, numpreds, succs)
     self.preds = None
開發者ID:Shuyib,項目名稱:galaxy,代碼行數:5,代碼來源:topsort.py

示例6: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, value=None):
     Exception.__init__(self)
     self.value = value
開發者ID:Lorquas,項目名稱:func,代碼行數:5,代碼來源:CommonErrors.py

示例7: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
    def __init__(self, msg, variableValue):
        Exception.__init__(self, msg)

        self.variableValue = variableValue
開發者ID:danrg,項目名稱:RGT-tool,代碼行數:6,代碼來源:valueParsingError.py

示例8: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
	def __init__(self, message):
		""" Initialize module """
		Exception.__init__(self)
		self.message = message
開發者ID:Verival,項目名稱:acidentes-em-rodovias,代碼行數:6,代碼來源:internal_exceptions.py

示例9: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, path):
   Exception.__init__(self, 'Path not found, %s', path)
開發者ID:hzx,項目名稱:pymutant,代碼行數:4,代碼來源:errors.py

示例10: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
	def __init__(self, message):
		Exception.__init__(self)
		self.message = message
開發者ID:josepedro,項目名稱:BarTenderMixer,代碼行數:5,代碼來源:validation_exceptions.py

示例11: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
	def __init__(self, msg):
		Exception.__init__(self, msg)
開發者ID:samvarankashyap,項目名稱:Finite-state-machine,代碼行數:4,代碼來源:StateMachine.py

示例12: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, insee_code, year):
     message = "The commune with insee code %s was removed in %s"%(insee_code, year)
     Exception.__init__(self, message)
開發者ID:fmassot,項目名稱:mapsdata,代碼行數:5,代碼來源:models.py

示例13: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, message, innerException = None):
     Exception.__init__(self)
     self.message = message
     self.innerException = innerException
開發者ID:Black0wL,項目名稱:webtechproject,代碼行數:6,代碼來源:WTP_Exception.py

示例14: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, *args, **keywords):
     Exception.__init__(self, *args)
     self.keywords = keywords
     self._print_exc_str = None
開發者ID:mcruse,項目名稱:monotone,代碼行數:6,代碼來源:megatron.py

示例15: __init__

# 需要導入模塊: from exceptions import Exception [as 別名]
# 或者: from exceptions.Exception import __init__ [as 別名]
 def __init__(self, rv, *args):
     self.rv = rv
     Exc.__init__(self, *args)
開發者ID:hflynn,項目名稱:openmicroscopy,代碼行數:5,代碼來源:cli.py


注:本文中的exceptions.Exception.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。