zss
2024-08-20 5c23611de83b28d34ea486af67e1f4ce5c8a494b
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);
    }
 
}