zss
2024-07-16 182b0785c628e6b1134d51985a692d0df7a8fb85
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);
    }
 
}