ScrapingException constructor
ScrapingException(
- String message, {
- ScrapingExceptionType type = ScrapingExceptionType.unexpected,
- dynamic originalException,
- String? url,
- int? statusCode,
- bool isRetryable = true,
Creates a new ScrapingException with the given parameters
Implementation
ScrapingException(
this.message, {
this.type = ScrapingExceptionType.unexpected,
this.originalException,
this.url,
this.statusCode,
this.isRetryable = true,
});