xworker.manong.MaNongException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xworker_app Show documentation
Show all versions of xworker_app Show documentation
XWorker app model liberary.
The newest version!
package xworker.manong;
public class MaNongException extends RuntimeException{
private static final long serialVersionUID = 1L;
public MaNongException(){
super();
}
public MaNongException(String message){
super(message);
}
public MaNongException(String message, Throwable cause){
super(message, cause);
}
public MaNongException(Throwable cause){
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy