mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-12 20:45:20 +02:00
11 lines
341 B
Python
11 lines
341 B
Python
"""Failures raised while rendering a transcript to audio."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
class RenderError(RuntimeError):
|
|
"""Rendering could not produce a final audio file.
|
|
|
|
Wraps both per-segment synthesis failures and the merge step so the render
|
|
task sees one failure type regardless of where it originated.
|
|
"""
|