Skip to content

Commit

Permalink
Added a line break for each method declaration that was longer than 1…
Browse files Browse the repository at this point in the history
…20 characters. Added line break between constructors in class declarations.
  • Loading branch information
Lezune committed Jun 13, 2024
1 parent 79795ef commit c3fa328
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ private async ValueTask<ChatCompletion> TryCatch(
private static ChatCompletionValidationException CreateChatCompletionValidationException(
Xeption innerException)
{

return new ChatCompletionValidationException(
message: "Chat completion validation error occurred, fix errors and try again.",
innerException);
Expand All @@ -126,6 +127,7 @@ private static ChatCompletionValidationException CreateChatCompletionValidationE
private static ChatCompletionDependencyException CreateChatCompletionDependencyException(
Xeption innerException)
{

return new ChatCompletionDependencyException(
message: "Chat completion dependency error occurred, contact support.",
innerException);
Expand All @@ -143,6 +145,7 @@ private static ChatCompletionDependencyValidationException
private static ChatCompletionServiceException CreateChatCompletionServiceException(
Xeption innerException)
{

return new ChatCompletionServiceException(
message: "Chat completion service error occurred, contact support.",
innerException);
Expand Down

0 comments on commit c3fa328

Please sign in to comment.