Skip to content

Commit

Permalink
Code review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Feb 26, 2024
1 parent fd5af7d commit 2ae712e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ class BasePalaceException(Exception):
"""Base class for all Exceptions in the Palace manager."""

def __init__(self, message: str | None = None):
"""Initializes a new instance of BaseError class
"""Initializes a new instance of BasePalaceException class
:param message: String containing description of the error occurred
:param message: String containing description of the exception that occurred
"""
super().__init__(message)
self.message = message
Expand Down

0 comments on commit 2ae712e

Please sign in to comment.