Files
Tongsin/SubProject/QRCodeLib/exception/AlignmentPatternNotFoundException.cs
2019-02-23 23:02:52 +09:00

22 lines
378 B
C#

using System;
namespace ThoughtWorks.QRCode.ExceptionHandler
{
[Serializable]
public class AlignmentPatternNotFoundException:System.ArgumentException
{
internal String message = null;
public override String Message
{
get
{
return message;
}
}
public AlignmentPatternNotFoundException(String message)
{
this.message = message;
}
}
}