All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shz.word.WordMsg Maven / Gradle / Ivy

The newest version!
package shz.word;

import shz.core.msg.ClientFailureMsg;

public enum WordMsg implements ClientFailureMsg {
    MISSING_WORD_IN_AND_OUT("缺少word输入输出"),
    INVALID_WORD_FILE("无效word文件"),
    UNSUPPORTED_WORD("不支持的word格式"),

    ;

    private final String msg;

    WordMsg(String msg) {
        this.msg = msg;
    }

    @Override
    public String msg() {
        return msg;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy