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.
12 lines
433 B
12 lines
433 B
using System;
|
|
|
|
namespace QRCoder.Exceptions
|
|
{
|
|
public class DataTooLongException : Exception
|
|
{
|
|
public DataTooLongException(string eccLevel, string encodingMode, int maxSizeByte) : base(
|
|
$"The given payload exceeds the maximum size of the QR code standard. The maximum size allowed for the choosen paramters (ECC level={eccLevel}, EncodingMode={encodingMode}) is {maxSizeByte} byte."
|
|
){}
|
|
}
|
|
}
|