exception.py 146 B

12345678
  1. #!/usr/bin/env python
  2. # -*- encoding=utf8 -*-
  3. class SKException(Exception):
  4. def __init__(self, message):
  5. super().__init__(message)