jimvc_exception.py 315 B

123456789101112131415161718192021
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. __author__ = 'James Iter'
  4. __date__ = '2017/3/21'
  5. __contact__ = 'james.iter.cn@gmail.com'
  6. __copyright__ = '(c) 2017 by James Iter.'
  7. class JimVCException(Exception):
  8. pass
  9. class PathExist(JimVCException):
  10. pass
  11. class PathNotExist(JimVCException):
  12. pass