blob: 354141f06e0cb4ad9b12c444104c2895c5715fee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- coding: utf-8 -*-
"""
# Simple password manager
# Copyright (c) 2011-2019 Michael Buesch <m@bues.ch>
# Licensed under the GNU/GPL version 2 or later.
"""
__all__ = [
"PWManError",
]
class PWManError(Exception):
pass
|