Skip to content

Commit

Permalink
Update exception docs (#61278)
Browse files Browse the repository at this point in the history
  • Loading branch information
gewarren authored Nov 12, 2021
1 parent 16b970a commit aae8f51
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit aae8f51

Please sign in to comment.