zss
2024-10-18 1f15333b0a97a327865f7aab8f1e3f9ba8fc16f8
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);
    }
 
}