# Functions
NewBadRequestError returns a standardized struct with the correct status,
* and error tag for bad request situations
* Args:
* message (string): The message to be assigned to the struct's Message field
*/.
NewError returns a new error with an input message.
NewInternalServerError returns a standardized struct with the correct status,
* and error tag for internal error situations
* Args:
* message (string): The message to be assigned to the struct's Message field
*/.
NewNotFoundError returns a standardized struct with the correct status,
* and error tag for not found situations
* Args:
* message (string): The message to be assigned to the struct's Message field
*/.
No description provided by the author
No description provided by the author
NewUnauthorized returns a standardized struct with the correct status,
* and error tag for unauthorized access situations
* Args:
* message (string): The message to be assigned to the struct's Message field
*/.
# Interfaces
No description provided by the author