org.ansj.exception.LibraryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ansj_seg Show documentation
Show all versions of ansj_seg Show documentation
best java chinese word seg !
package org.ansj.exception;
public class LibraryException extends RuntimeException {
private static final long serialVersionUID = 1L;
public LibraryException(Exception e) {
super(e);
}
public LibraryException(String message) {
super(message);
}
}