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