zss
2024-10-30 d8ba960d180c0ad08b7dfb5a17e7ad351ca2eb62
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);
    }
 
}