ConnectionRefusedError

Built-in ExceptionPython 2.0+Intermediate

Raised when a connection attempt is refused

Quick Info

Documentation
Official Docs
Python Version
2.0+

Learn by Difficulty

Quick Example

python
# Triggering and catching ConnectionRefusedError
try:
    raise ConnectionRefusedError("connection refused")
except ConnectionRefusedError as e:
    print(f"Caught ConnectionRefusedError: {e}")
    print(f"Type: {type(e).__name__}")

ConnectionRefusedError is raised when raised when a connection attempt is refused. Always catch specific exceptions rather than bare except clauses.

Try in Playground

Tags

exceptionerror-handlingcore