zss
2024-10-26 fec35ab980d6b82d6d5f8ae8deba123a8f796830
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);
    }
 
}