ZhuDongming
2019-06-05 2b9c0e19babda8b4828d396bd0c2f97be3a0c0a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.moral.common.exception;
 
public class BusinessException extends RuntimeException {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    public BusinessException(String msg) {
        super(msg);
    }
 
}