--- /dev/null
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+"""
+@author: Frank Brehm
+@contact: frank@brehm-online.com
+@copyright: © 2020 by Frank Brehm, Berlin
+@summary: All modules used by named_conf package
+"""
+from __future__ import absolute_import
+
+from pathlib import Path
+
+# 3rd party modules
+
+from ldap3 import LDAPException
+
+# Own modules
+from fb_tools.errors import FbError
+
+__version__ = '0.1.0'
+
+#---------------------------------------------
+# Some module variables
+
+
+#==============================================================================
+class CommonLDAPMigrationError(FbError, LDAPException):
+ """
+ Base error class for all exceptions belonging to the ldap_migration package
+ """
+ pass
+
+
+#==============================================================================
+
+if __name__ == "__main__":
+
+ pass
+
+
+# vim: fileencoding=utf-8 filetype=python ts=4