Skip to content

Commit

Permalink
feat: add custom SolutionHistoryOperationException for handling solut…
Browse files Browse the repository at this point in the history
…ion history operation errors

#89
  • Loading branch information
iainlomax81 committed Oct 23, 2024
1 parent c2b3093 commit c9cf157
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
namespace Capgemini.PowerApps.PackageDeployerTemplate.Exceptions
{
using System;

/// <summary>
/// Represents an exception that is thrown when an operation related to Solution History fails.
/// </summary>
public class SolutionHistoryOperationException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="SolutionHistoryOperationException"/> class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public SolutionHistoryOperationException(string message)
: base(message)
{
}
}
}

0 comments on commit c9cf157

Please sign in to comment.