namespace WebNovelPortalAPI.Exceptions; public class NoMatchingScraperException: Exception { public NoMatchingScraperException(string novelUrl) : base($"Novel URL {novelUrl} did not match any registered web scraper.") { } }