decodingfailedexception.java

来自「qrcode的java开源版本」· Java 代码 · 共 23 行

JAVA
23
字号
package jp.sourceforge.qrcode.codec.exception;

// Possible Exceptions
//
//DecodingFailedException
//- SymbolNotFoundException
//  - FinderPatternNotFoundException
//  - AlignmentPatternNotFoundException
//- SymbolDataErrorException
//  - IllegalDataBlockException
//	- InvalidVersionInfoException
//- UnsupportedVersionException

public 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 + -
显示快捷键?