21 lines
363 B
C#
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;
|
|
}
|
|
}
|
|
} |