Skip to content

Commit

Permalink
Add documentation comments for IExceptionalError
Browse files Browse the repository at this point in the history
  • Loading branch information
Kysluss committed Jul 13, 2024
1 parent 6cdbe49 commit 3bc95d9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/FluentResults/Reasons/IExceptionalError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
// ReSharper disable once CheckNamespace
namespace FluentResults
{
/// <summary>
/// Definition of an error containing an exception
/// </summary>
public interface IExceptionalError : IError
{
/// <summary>
/// The exception
/// </summary>
Exception Exception { get; }

}
Expand Down

0 comments on commit 3bc95d9

Please sign in to comment.