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

35 lines
656 B
C#

using System;
namespace ThoughtWorks.QRCode.ExceptionHandler
{
// Possible Exceptions
//
//DecodingFailedException
//- SymbolNotFoundException
// - FinderPatternNotFoundException
// - AlignmentPatternNotFoundException
//- SymbolDataErrorException
// - IllegalDataBlockException
// - InvalidVersionInfoException
//- UnsupportedVersionException
[Serializable]
public class DecodingFailedException:System.ArgumentException
{
internal String message = null;
public override String Message
{
get
{
return message;
}
}
public DecodingFailedException(String message)
{
this.message = message;
}
}
}