exception.py 251 B

123456789101112131415
  1. # -*- coding: utf-8 -*-
  2. """
  3. # Simple password manager
  4. # Copyright (c) 2011-2024 Michael Büsch <m@bues.ch>
  5. # Licensed under the GNU/GPL version 2 or later.
  6. """
  7. __all__ = [
  8. "PWManError",
  9. ]
  10. class PWManError(Exception):
  11. """Main pwman exception.
  12. """