mirror of
https://github.com/nextcloud/android.git
synced 2024-12-18 15:01:57 +03:00
14 lines
256 B
Python
14 lines
256 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
Exception classes for the tx client.
|
||
|
"""
|
||
|
|
||
|
|
||
|
class UnInitializedError(Exception):
|
||
|
"""The project directory has not been initialized."""
|
||
|
|
||
|
|
||
|
class UnknownCommandError(Exception):
|
||
|
"""The provided command is not supported."""
|