clairec

GetOptError

May 4th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. class GetoptError(Exception):
  2.     opt = ''
  3.     msg = ''
  4.     def __init__(self, msg, opt=''):
  5.         self.msg = msg
  6.         self.opt = opt
  7.         Exception.__init__(self, msg, opt)
  8.  
  9.     def __str__(self):
  10.         return self.msg
Add Comment
Please, Sign In to add comment