| """Custom exceptions.""" | |
| class GooglePlayScraperException(Exception): | |
| """Base exception.""" | |
| pass | |
| class NotFoundError(GooglePlayScraperException): | |
| """App or resource not found.""" | |
| pass | |
| class RateLimitError(GooglePlayScraperException): | |
| """Rate limit exceeded.""" | |
| pass | |
| class RequestError(GooglePlayScraperException): | |
| """Request failed.""" | |
| pass | |
| class ValidationError(GooglePlayScraperException): | |
| """Data validation failed.""" | |
| pass |