com.github.tobato.fastdfs.proto.ErrorCodeConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastdfs-client Show documentation
Show all versions of fastdfs-client Show documentation
基于yuqih发布的代码与fastdfs-client 官方1.26版本的重构
package com.github.tobato.fastdfs.proto;
/**
* fastdfs协议错误码的常量
*
* @author yuqih
*
*/
public final class ErrorCodeConstants {
public static final byte SUCCESS = 0;
public static final byte ERR_NO_ENOENT = 2;
public static final byte ERR_NO_EIO = 5;
public static final byte ERR_NO_EBUSY = 16;
public static final byte ERR_NO_EINVAL = 22;
public static final byte ERR_NO_ENOSPC = 28;
public static final byte ERR_NO_CONNREFUSED = 61;
public static final byte ERR_NO_EALREADY = 114;
}