当前位置: 首页>>代码示例>>Java>>正文


Java ErrorCodes.getDescription方法代码示例

本文整理汇总了Java中com.trilead.ssh2.sftp.ErrorCodes.getDescription方法的典型用法代码示例。如果您正苦于以下问题:Java ErrorCodes.getDescription方法的具体用法?Java ErrorCodes.getDescription怎么用?Java ErrorCodes.getDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.trilead.ssh2.sftp.ErrorCodes的用法示例。


在下文中一共展示了ErrorCodes.getDescription方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: constructMessage

import com.trilead.ssh2.sftp.ErrorCodes; //导入方法依赖的package包/类
private static String constructMessage(String s, int errorCode)
{
	String[] detail = ErrorCodes.getDescription(errorCode);

	if (detail == null)
		return s + " (UNKNOW SFTP ERROR CODE)";

	return s + " (" + detail[0] + ": " + detail[1] + ")";
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:10,代码来源:SFTPException.java

示例2: getServerErrorCodeSymbol

import com.trilead.ssh2.sftp.ErrorCodes; //导入方法依赖的package包/类
/**
 * Get the symbolic name of the error code as given in the SFTP specs.
 * 
 * @return e.g., "SSH_FX_INVALID_FILENAME".
 */
public String getServerErrorCodeSymbol()
{
	String[] detail = ErrorCodes.getDescription(sftpErrorCode);

	if (detail == null)
		return "UNKNOW SFTP ERROR CODE " + sftpErrorCode;

	return detail[0];
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:15,代码来源:SFTPException.java

示例3: getServerErrorCodeVerbose

import com.trilead.ssh2.sftp.ErrorCodes; //导入方法依赖的package包/类
/**
 * Get the description of the error code as given in the SFTP specs.
 * 
 * @return e.g., "The filename is not valid."
 */
public String getServerErrorCodeVerbose()
{
	String[] detail = ErrorCodes.getDescription(sftpErrorCode);

	if (detail == null)
		return "The error code " + sftpErrorCode + " is unknown.";

	return detail[1];
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:15,代码来源:SFTPException.java

示例4: constructMessage

import com.trilead.ssh2.sftp.ErrorCodes; //导入方法依赖的package包/类
private static String constructMessage(String s, int errorCode) {
	String[] detail = ErrorCodes.getDescription(errorCode);

	if (detail == null)
		return s + " (UNKNOW SFTP ERROR CODE)";

	return s + " (" + detail[0] + ": " + detail[1] + ")";
}
 
开发者ID:jianlinwei,项目名称:sshtunnel,代码行数:9,代码来源:SFTPException.java

示例5: getServerErrorCodeSymbol

import com.trilead.ssh2.sftp.ErrorCodes; //导入方法依赖的package包/类
/**
 * Get the symbolic name of the error code as given in the SFTP specs.
 * 
 * @return e.g., "SSH_FX_INVALID_FILENAME".
 */
public String getServerErrorCodeSymbol() {
	String[] detail = ErrorCodes.getDescription(sftpErrorCode);

	if (detail == null)
		return "UNKNOW SFTP ERROR CODE " + sftpErrorCode;

	return detail[0];
}
 
开发者ID:jianlinwei,项目名称:sshtunnel,代码行数:14,代码来源:SFTPException.java

示例6: getServerErrorCodeVerbose

import com.trilead.ssh2.sftp.ErrorCodes; //导入方法依赖的package包/类
/**
 * Get the description of the error code as given in the SFTP specs.
 * 
 * @return e.g., "The filename is not valid."
 */
public String getServerErrorCodeVerbose() {
	String[] detail = ErrorCodes.getDescription(sftpErrorCode);

	if (detail == null)
		return "The error code " + sftpErrorCode + " is unknown.";

	return detail[1];
}
 
开发者ID:jianlinwei,项目名称:sshtunnel,代码行数:14,代码来源:SFTPException.java


注:本文中的com.trilead.ssh2.sftp.ErrorCodes.getDescription方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。