Files
Toolkit2/Toolkit.UI.Controls.Avalonia/QrCode/Encoding/InputOutOfBoundaryException.cs
T
TheXamlGuy bc55c4649b tidy
2024-04-26 23:05:36 +01:00

15 lines
355 B
C#

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