CrawlerStoppingException constructor

CrawlerStoppingException({
  1. String? type,
  2. String? message,
})

Implementation

CrawlerStoppingException({String? type, String? message})
    : super(type: type, code: 'CrawlerStoppingException', message: message);