zss
2024-11-13 d6a0ab3ee7b45bcebf6767e6c58930dd5c22b0aa
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);
    }
 
}