Skip to content

Commit

Permalink
Removed Extra lines at the end of files and added line break to metho…
Browse files Browse the repository at this point in the history
…d declarations larger than 120 characters that needed a break after the return type.
  • Loading branch information
Lezune committed Jun 13, 2024
1 parent 0c58219 commit ebfa48b
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ public ChatCompletionDependencyException(string message, Xeption innerException)
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ public ChatCompletionDependencyValidationException(string message, Xeption inner
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ public ChatCompletionValidationException(string message, Xeption innerException)
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public ExcessiveCallChatCompletionException(string message, Exception innerExcep
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public FailedChatCompletionServiceException(string message, Exception innerExcep
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ public InvalidChatCompletionException(string message, Xeption innerException)
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public InvalidConfigurationChatCompletionException(string message, Exception inn
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public NotFoundChatCompletionException(string message, Exception innerException)
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public class NullChatCompletionException : Xeption
public NullChatCompletionException(string message)
: base(message)
{ }

public NullChatCompletionException(string message, Xeption innerException)
: base(message, innerException)
{ }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public UnauthorizedChatCompletionException(string message, Exception innerExcept
: base(message, innerException)
{ }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,10 @@ private static ChatCompletionDependencyException CreateChatCompletionDependencyE
innerException);
}

private static ChatCompletionDependencyValidationException CreateChatCompletionDependencyValidationException(
Xeption innerException)
private static ChatCompletionDependencyValidationException
CreateChatCompletionDependencyValidationException(Xeption innerException)
{

return new ChatCompletionDependencyValidationException(
"Chat completion dependency validation error occurred, fix errors and try again.",
innerException);
Expand Down

0 comments on commit ebfa48b

Please sign in to comment.