Skip to content

Commit

Permalink
Fix documentation linking
Browse files Browse the repository at this point in the history
Signed-off-by: Carmen Bianca BAKKER <[email protected]>
  • Loading branch information
carmenbianca committed Oct 17, 2024
1 parent d05a806 commit 0af6fb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/reuse/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SpdxIdentifierNotFoundError(ReuseError):

class GlobalLicensingParseError(ReuseError):
"""An exception representing any kind of error that occurs when trying to
parse a :class:`GlobalLicensing` file.
parse a :class:`reuse.global_licensing.GlobalLicensing` file.
"""

def __init__(self, *args: Any, source: Optional[str] = None):
Expand All @@ -29,13 +29,13 @@ def __init__(self, *args: Any, source: Optional[str] = None):

class GlobalLicensingParseTypeError(GlobalLicensingParseError, TypeError):
"""An exception representing a type error while trying to parse a
:class:`GlobalLicensing` file.
:class:`reuse.global_licensing.GlobalLicensing` file.
"""


class GlobalLicensingParseValueError(GlobalLicensingParseError, ValueError):
"""An exception representing a value error while trying to parse a
:class:`GlobalLicensing` file.
:class:`reuse.global_licensing.GlobalLicensing` file.
"""


Expand Down

0 comments on commit 0af6fb6

Please sign in to comment.