Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: python-best-practices/exception-inherit

Language: Python

Severity: Warning

Category: Best Practices

Description

New Exception must inherit the base Exception. Always use another exception as parent or use at least the Exception base class.

Learn More

Non-Compliant Code Examples

class CustomException:
    """An Invalid exception class."""

Compliant Code Examples

class CustomException(Exception):
    """An Invalid exception class."""