Skip to content

Commit

Permalink
Added line break above return statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lezune committed Jun 12, 2024
1 parent 067cb25 commit d185443
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ private static async ValueTask<AudioTranscription> TryCatch(
private static AudioTranscriptionValidationException
CreateAudioTranscriptionValidationException(Xeption innerException)
{

return new AudioTranscriptionValidationException(
message: "Audio transcription validation error occurred, fix errors and try again.",
innerException);
Expand All @@ -106,6 +107,7 @@ private static AudioTranscriptionValidationException
private static AudioTranscriptionDependencyException
CreateAudioTranscriptionDependencyException(Xeption innerException)
{

return new AudioTranscriptionDependencyException(
message: "Audio transcription dependency error occurred, contact support.",
innerException);
Expand All @@ -114,6 +116,7 @@ private static AudioTranscriptionDependencyException
private static AudioTranscriptionDependencyValidationException
CreateAudioTranscriptionDependencyValidationException(Xeption innerException)
{

return new AudioTranscriptionDependencyValidationException(
message: "Chat completion dependency validation error occurred, fix errors and try again.",
innerException);
Expand All @@ -122,6 +125,7 @@ private static AudioTranscriptionDependencyValidationException
private static AudioTranscriptionServiceException
CreateAudioTranscriptionServiceException(Xeption innerException)
{

return new AudioTranscriptionServiceException(
message: "Audio transcription service error occurred, contact support.",
innerException);
Expand Down

0 comments on commit d185443

Please sign in to comment.