Skip to content

quickhttp.exceptions

Documentation for quickhttp.exceptions module.

Classes

InvalidSearchTypeError

Bases: QuickhttpException, ValueError

Source code in quickhttp/exceptions.py
 9
10
class InvalidSearchTypeError(QuickhttpException, ValueError):
    pass

NoAvailablePortFoundError

Bases: QuickhttpException

Source code in quickhttp/exceptions.py
5
6
class NoAvailablePortFoundError(QuickhttpException):
    pass

QuickhttpException

Bases: Exception

Base exception for all quickhttp custom exceptions.

Source code in quickhttp/exceptions.py
1
2
class QuickhttpException(Exception):
    """Base exception for all quickhttp custom exceptions."""