zss
2024-10-22 ca348b39515efab36aa5ec0f68144a9917e7b188
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);
    }
 
}