diff --git a/src/Capgemini.PowerApps.PackageDeployerTemplate/Exceptions/SolutionHistoryOperationException.cs b/src/Capgemini.PowerApps.PackageDeployerTemplate/Exceptions/SolutionHistoryOperationException.cs new file mode 100644 index 0000000..665ab9c --- /dev/null +++ b/src/Capgemini.PowerApps.PackageDeployerTemplate/Exceptions/SolutionHistoryOperationException.cs @@ -0,0 +1,19 @@ +namespace Capgemini.PowerApps.PackageDeployerTemplate.Exceptions +{ + using System; + + /// + /// Represents an exception that is thrown when an operation related to Solution History fails. + /// + public class SolutionHistoryOperationException : Exception + { + /// + /// Initializes a new instance of the class. + /// + /// The message that describes the error. + public SolutionHistoryOperationException(string message) + : base(message) + { + } + } +}