errors.py
来自「HP Deskjet D2368驱动,可以驱动任何HP 的打印机」· Python 代码 · 共 53 行
PY
53 行
"""optik.errorsException classes used by Optik."""__revision__ = "$Id: errors.py,v 1.1 2006/12/18 23:09:06 dwelch Exp $"# Copyright (c) 2001 Gregory P. Ward. All rights reserved.# See the README.txt distributed with Optik for licensing terms.# created 2001/10/17 GPW (from optik.py)class OptikError (Exception): def __init__ (self, msg): self.msg = msg def __str__ (self): return self.msgclass OptionError (OptikError): """ Raised if an Option instance is created with invalid or inconsistent arguments. """ def __init__ (self, msg, option): self.msg = msg self.option_id = str(option) def __str__ (self): if self.option_id: return "option %s: %s" % (self.option_id, self.msg) else: return self.msgclass OptionConflictError (OptionError): """ Raised if conflicting options are added to an OptionParser. """class OptionValueError (OptikError): """ Raised if an invalid option value is encountered on the command line. """class BadOptionError (OptikError): """ Raised if an invalid or ambiguous option is seen on the command-line. """
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?