initial commit

This commit is contained in:
chi
2019-05-04 06:53:50 +09:00
commit cca9ed2bb4
277 changed files with 34473 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;
}
}
}