# -*- coding: utf-8 -*- """ # Simple password manager # Copyright (c) 2011-2024 Michael Büsch # Licensed under the GNU/GPL version 2 or later. """ __all__ = [ "PWManError", ] class PWManError(Exception): """Main pwman exception. """