**Feature: Enhanced Error Handling for Authentication/Authorization Failures**
This release introduces improved error differentiation for HTTP 401 (Unauthorized) responses to streamline error handling in authentication/authorization workflows.
**Key Changes:**
- **New Exception Class:** Added the `UnauthorizedError` class, inheriting from `ClientError`, to explicitly represent HTTP 401 errors.
- **Error Mapping Update:** The `wrap_to_bazooka_exception` handler now maps generic `HTTPError` instances with status code 401 to the dedicated `UnauthorizedError`, enabling downstream systems to reliably detect and respond to authentication/authorization failures.
**Impact:**
- Clearer distinction of unauthorized errors improves debugging and programmatic handling (e.g., triggering re-authentication flows or customized logging).
- Aligns with best practices for API error management by providing granular exception types.