Skip to main content

office_rs/error/format/
docx.rs

1use thiserror::Error;
2
3/// Word特定错误
4#[derive(Error, Debug)]
5pub enum DocxError {
6    #[error("样式不存在: {style_id}")] StyleNotFound {
7        style_id: String,
8    },
9
10    #[error("表格结构无效")]
11    InvalidTableStructure,
12
13    #[error("段落格式错误: {reason}")] InvalidParagraphFormat {
14        reason: String,
15    },
16
17    #[error("书签不存在: {bookmark}")] BookmarkNotFound {
18        bookmark: String,
19    },
20}