You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QR-Code-generator/csharp/QrCodeGen/DataTooLongException.cs

19 lines
509 B

/*
* QR Code generator library (C# port)
*
* Ported from Java version in this repository.
* Copyright (c) Project Nayuki. (MIT License)
* https://www.nayuki.io/page/qr-code-generator-library
*/
using System;
namespace Io.Nayuki.QrCodeGen;
/// <summary>
/// Thrown when the supplied data does not fit any QR Code version.
/// </summary>
public class DataTooLongException : ArgumentException {
public DataTooLongException() { }
public DataTooLongException(string? message) : base(message) { }
}