diff --git a/docs/api/frontends.rst b/docs/api/frontends.rst index b843692d..e1fbd5a7 100644 --- a/docs/api/frontends.rst +++ b/docs/api/frontends.rst @@ -33,7 +33,7 @@ The following requirements applies to any frontend implementation: - Such config values MUST be documented. -- The main actor MUST raise the :exc:`~mopidy.exceptions.FrontendError` with a +- The main actor MUST raise the :exc:`mopidy.exceptions.FrontendError` with a descriptive error message if the defined config values are not adequate for the frontend to work properly. diff --git a/mopidy/backend/__init__.py b/mopidy/backend/__init__.py index d6474c43..317cf762 100644 --- a/mopidy/backend/__init__.py +++ b/mopidy/backend/__init__.py @@ -9,7 +9,7 @@ class Backend(object): """Backend API If the backend has problems during initialization it should raise - :exc:`~mopidy.exceptions.BackendError` with a descriptive error message. + :exc:`mopidy.exceptions.BackendError` with a descriptive error message. This will make Mopidy print the error message and exit so that the user can fix the issue. diff --git a/mopidy/mixer.py b/mopidy/mixer.py index 76c6e92a..9bbe4a71 100644 --- a/mopidy/mixer.py +++ b/mopidy/mixer.py @@ -13,7 +13,7 @@ class Mixer(object): Audio mixer API If the mixer has problems during initialization it should raise - :exc:`~mopidy.exceptions.MixerError` with a descriptive error message. This + :exc:`mopidy.exceptions.MixerError` with a descriptive error message. This will make Mopidy print the error message and exit so that the user can fix the issue.