DecodingFailedException.cs
上传用户:tjjgrl
上传日期:2019-04-04
资源大小:1010k
文件大小:1k
源码类别:

电子政务应用

开发平台:

C#

  1. using System;
  2. namespace ThoughtWorks.QRCode.ExceptionHandler
  3. {
  4. // Possible Exceptions
  5. //
  6. //DecodingFailedException
  7. //- SymbolNotFoundException
  8. //  - FinderPatternNotFoundException
  9. //  - AlignmentPatternNotFoundException
  10. //- SymbolDataErrorException
  11. //  - IllegalDataBlockException
  12. // - InvalidVersionInfoException
  13. //- UnsupportedVersionException
  14. [Serializable]
  15. public class DecodingFailedException:System.ArgumentException
  16. {
  17.         internal String message = null;
  18. public override String Message
  19. {
  20. get
  21. {
  22. return message;
  23. }
  24. }
  25. public DecodingFailedException(String message)
  26. {
  27. this.message = message;
  28. }
  29. }
  30. }