-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add custom SolutionHistoryOperationException for handling solut…
…ion history operation errors #89
- Loading branch information
1 parent
c2b3093
commit c9cf157
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
...pgemini.PowerApps.PackageDeployerTemplate/Exceptions/SolutionHistoryOperationException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
{ | ||
} | ||
} | ||
} |