initial commit

This commit is contained in:
Chikyun
2019-02-23 23:02:52 +09:00
commit 52e5dbff19
477 changed files with 77326 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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;
}
}
}