using System; namespace Gma.QrCodeNet.Encoding; /// /// Use this exception for null or empty input string or when input string is too large. /// public class InputOutOfBoundaryException : Exception { public InputOutOfBoundaryException() : base() { } public InputOutOfBoundaryException(string message) : base(message) { } }