decodingfailedexception.java

来自「QR code是日本人开发的现在很流行的国际通用的二维条形码」· Java 代码 · 共 23 行

JAVA
23
字号
package jp.sourceforge.qrcode.exception;// Possible Exceptions////DecodingFailedException//- SymbolNotFoundException//  - FinderPatternNotFoundException//  - AlignmentPatternNotFoundException//- SymbolDataErrorException//  - IllegalDataBlockException//	- InvalidVersionInfoException//- UnsupportedVersionExceptionpublic class DecodingFailedException extends IllegalArgumentException {	String message = null;	public DecodingFailedException(String message) {		this.message = message;	}	public String getMessage() {		return message;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?