Skip to content

Commit

Permalink
100文字に折り畳む
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Sep 24, 2023
1 parent aa23a4c commit c5a5981
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions crates/voicevox_core/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,16 @@ pub(crate) enum ErrorRepr {
#[error("サポートされているデバイス情報取得中にエラーが発生しました,{0}")]
GetSupportedDevices(#[source] anyhow::Error),

#[error("`{style_id}`に対するスタイルが見つかりませんでした。音声モデルが読み込まれていないか、読み込みが解除されています")]
#[error(
"`{style_id}`に対するスタイルが見つかりませんでした。音声モデルが読み込まれていないか、読\
み込みが解除されています"
)]
StyleNotFound { style_id: StyleId },

#[allow(dead_code)] // FIXME
#[error(
"`{model_id}`に対する音声モデルが見つかりませんでした。読み込まれていないか、読み込みが既に解除されています"
"`{model_id}`に対する音声モデルが見つかりませんでした。読み込まれていないか、読み込みが既\
に解除されています"
)]
ModelNotFound { model_id: VoiceModelId },

Expand Down

0 comments on commit c5a5981

Please sign in to comment.