org.voovan.network.exception.SendMessageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-network Show documentation
Show all versions of voovan-network Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.network.exception;
import java.io.IOException;
public class SendMessageException extends IOException {
private static final long serialVersionUID = 1L;
public SendMessageException(String message,Exception e){
super(message);
this.setStackTrace(e.getStackTrace());
}
public SendMessageException(String message){
super(message);
}
public SendMessageException(Exception e){
this.setStackTrace(e.getStackTrace());
}
}