-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6bb104
commit 8e84967
Showing
3 changed files
with
477 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
# | ||
# File: lucit_licensing_python/licensing_exceptions.py | ||
# | ||
# Project website: https://www.lucit.tech/lucit-licensing-python.html | ||
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python | ||
# Documentation: https://lucit-licensing-python.docs.lucit.tech | ||
# PyPI: https://pypi.org/project/lucit-licensing-python | ||
# LUCIT Online Shop: https://shop.lucit.services/software | ||
# | ||
# License: LSOSL - LUCIT Synergetic Open Source License | ||
# https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/blob/master/LICENSE | ||
# | ||
# Author: LUCIT Systems and Development | ||
# | ||
# Copyright (c) 2023-2023, LUCIT Systems and Development (https://www.lucit.tech) | ||
# All rights reserved. | ||
|
||
# define Python user-defined exceptions | ||
class NoValidatedLucitLicense(Exception): | ||
""" | ||
No valid LUCIT license verification. | ||
""" | ||
pass |
Oops, something went wrong.