using System; namespace Amazon.AspNetCore.DataProtection.SSM { /// /// Thrown when a parameter should be stored that exceeds the configured /// tiers maximum length. /// #pragma warning disable CA1032 // Implement standard exception constructors public class SSMParameterToLongException : Exception #pragma warning restore CA1032 // Implement standard exception constructors { /// /// Initializes a new instance of the class with a specified error message. /// /// The message that describes the error. public SSMParameterToLongException(string message) : base(message) { } } }