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

com.hn.translation.exception.TranslationException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.translation.exception;

/**
 * 描述:
 * 翻译异常
 * @author fei
 */
public class TranslationException extends RuntimeException {
    public TranslationException() {
    }
    public TranslationException(String message) {
        super(message);
    }

    public TranslationException(String message, Throwable cause) {
        super(message, cause);
    }

    public static TranslationException exception(String message){
        return new TranslationException(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy