You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
291 B

package com.zgx.iot.netty.exception;
/**
* @author AaGMixW
*/
public class NettyServiceControllerException extends RuntimeException {
private static final long serialVersionUID = -8621535055348629709L;
public NettyServiceControllerException(String s) {
super(s);
}
}