zss
2024-08-03 f608e00e49461f60ba8df1566fc4b9a998430ace
1
2
3
4
5
6
7
8
9
package com.yuanchu.mom.exception;
 
public class ErrorException extends RuntimeException{
 
    public ErrorException(String msg){
        super(msg);
    }
 
}