using System; using System.Collections.Generic; using System.Text; namespace Amazon.Lambda.PowerShellHost { /// /// Exceptions thrown from errors running the PowerShell script /// public class LambdaPowerShellException : Exception { /// /// Exceptions thrown from errors running the PowerShell script /// /// public LambdaPowerShellException(string message) : base(message) { } /// /// Exceptions thrown from errors running the PowerShell script /// /// public LambdaPowerShellException(Exception wrappedException) : base(wrappedException.Message, wrappedException) { } /// /// Exceptions thrown from errors running the PowerShell script /// /// /// public LambdaPowerShellException(string message, Exception innerException) : base(message, innerException) { } } }