Skip to content

Commit

Permalink
SpeakerFeatureExceptionの追加
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Jan 3, 2024
1 parent 13dcca2 commit 6d2eb80
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package jp.hiroshiba.voicevoxcore.exceptions;

public class SpeakerFeatureException extends UnsupportedOperationException {
public SpeakerFeatureException(String message) {
super(message);
}

public SpeakerFeatureException(String message, Throwable cause) {
super(message, cause);
}
}
2 changes: 1 addition & 1 deletion crates/voicevox_core_java_api/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ where
WordNotFound,
UseUserDict,
InvalidWord,
SpeakerFeature, // TODO
SpeakerFeature,
);

let mut sources =
Expand Down

0 comments on commit 6d2eb80

Please sign in to comment.