当前位置: 首页>>代码示例>>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;未经允许,请勿转载。