Files
QRCodeLib/exception/FinderPatternNotFoundException.cs
2019-05-04 06:53:50 +09:00

21 lines
363 B
C#

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