com.dongyue.util.exception.MyException Maven / Gradle / Ivy
The newest version!
package com.dongyue.util.exception;
/**
* @author 东岳
*/
public class MyException extends RuntimeException {
public MyException(String msg) {
super(msg);
}
}