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