admin
2022-06-17 2d88839407045d9f483cf2ab4aed149a59e22df4
1
2
3
4
5
6
7
8
9
10
11
package com.yeshi.makemoney.app.exception.goldcorn;
 
import com.ks.lib.common.exception.BaseException;
 
public class GoldCornTaskTypeInfoException extends BaseException{
 
    public GoldCornTaskTypeInfoException(int code, String msg) {
        super(code, msg);
    }
 
}