initial commit
This commit is contained in:
35
exception/DecodingFailedException.cs
Normal file
35
exception/DecodingFailedException.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user