zss
2024-10-25 5ae5596b024929f6ecd857411e7c2d64c1c96aca
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);
    }
 
}