📄 incorrectversionexception.java
字号:
package org.apache.hadoop.dfs;import java.io.IOException;/** * The exception is thrown when external version does not match * current version of the appication. * * @author Konstantin Shvachko */class IncorrectVersionException extends IOException { public IncorrectVersionException( int version, String ofWhat ) { super( "Unexpected version " + (ofWhat==null ? "" : "of " + ofWhat) + " reported: " + version + ". Expecting = " + FSConstants.DFS_CURRENT_VERSION + "." ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -