37 lines
671 B
Python
37 lines
671 B
Python
"""
|
|
This type stub file was generated by pyright.
|
|
"""
|
|
|
|
import asyncio
|
|
|
|
"""Exceptions for pyppeteer package."""
|
|
class PyppeteerError(Exception):
|
|
"""Base exception for pyppeteer."""
|
|
...
|
|
|
|
|
|
class BrowserError(PyppeteerError):
|
|
"""Exception raised from browser."""
|
|
...
|
|
|
|
|
|
class ElementHandleError(PyppeteerError):
|
|
"""ElementHandle related exception."""
|
|
...
|
|
|
|
|
|
class NetworkError(PyppeteerError):
|
|
"""Network/Protocol related exception."""
|
|
...
|
|
|
|
|
|
class PageError(PyppeteerError):
|
|
"""Page/Frame related exception."""
|
|
...
|
|
|
|
|
|
class TimeoutError(asyncio.TimeoutError):
|
|
"""Timeout Error class."""
|
|
...
|
|
|
|
|