Toolkit.UI.Controls.Avalonia
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user