com.seejoke.pinyin.IllegalPinyinException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-tools Show documentation
Show all versions of core-tools Show documentation
提供java常用的、流行的工具方法,减少项目冗余代码
package com.seejoke.pinyin;
/**
* @auther: [email protected]
* @date: 2018/5/3 17:42
* @description:
*/
public class IllegalPinyinException extends Exception {
private static final long serialVersionUID = 4447260855879734366L;
public IllegalPinyinException() {
}
public IllegalPinyinException(String message) {
super(message);
}
public IllegalPinyinException(String message, Throwable cause) {
super(message, cause);
}
public IllegalPinyinException(Throwable cause) {
super(cause);
}
}