7 lines
198 B
Python
7 lines
198 B
Python
"""Writer 子系统异常。"""
|
|
from __future__ import annotations
|
|
|
|
|
|
class WriterGenerationError(Exception):
|
|
"""LLM 章节生成失败(引擎 status 非 ok/fallback、或解析耗尽)。"""
|