DecodingFailedException.cs
资源名称:QRCodeLib.rar [点击查看]
上传用户:tjjgrl
上传日期:2019-04-04
资源大小:1010k
文件大小:1k
源码类别:
电子政务应用
开发平台:
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;
- }
- }
- }