Description
The ConfigurationMissingException class in src/Hosting/Exceptions/ConfigurationMissingException.cs currently uses the Microsoft namespace:
namespace Microsoft.Extensions.Hosting.Exceptions;
This should be changed to use the project's namespace instead to avoid confusion and potential conflicts with Microsoft types.
Expected Change
Change the namespace declaration to:
namespace Escendit.Extensions.Hosting.Exceptions;
Additional Context
Files to Update
src/Hosting/Exceptions/ConfigurationMissingException.cs - update namespace declaration
src/Hosting/PublicAPI.Unshipped.txt - update public API entries to reflect new namespace
- Any other files that reference this exception type