"""Base application exception class is defined here.""" class {{ProjectName}}Error(RuntimeError): """ Base application exception to inherit from. """ def __str__(self) -> str: return "Unexpected error happened in {{project_name}}"