mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
12 lines
238 B
Python
12 lines
238 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Errors for Tahoe-LAFS module
|
|
"""
|
|
|
|
from plinth.errors import PlinthError
|
|
|
|
|
|
class TahoeConfigurationError(PlinthError):
|
|
"""Tahoe-LAFS has not been configured for domain name."""
|
|
pass
|