Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update exception docs #61278

Merged
merged 1 commit into from
Nov 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ static Stream OpenRead(IFileInfo fileInfo)
/// <summary>
/// Loads the contents of the file at <see cref="Path"/>.
/// </summary>
/// <exception cref="DirectoryNotFoundException">If Optional is <c>false</c> on the source and part of a file or
/// or directory cannot be found at the specified Path.</exception>
/// <exception cref="FileNotFoundException">If Optional is <c>false</c> on the source and a
/// <exception cref="DirectoryNotFoundException">Optional is <c>false</c> on the source and a
/// directory cannot be found at the specified Path.</exception>
/// <exception cref="FileNotFoundException">Optional is <c>false</c> on the source and a
/// file does not exist at specified Path.</exception>
/// <exception cref="InvalidDataException">Wrapping any exception thrown by the concrete implementation of the
/// <exception cref="InvalidDataException">An exception was thrown by the concrete implementation of the
/// <see cref="Load()"/> method. Use the source <see cref="FileConfigurationSource.OnLoadException"/> callback
/// if you need more control over the exception.</exception>
public override void Load()
Expand Down