Crunchy
2024-07-18 95e69381eeb4a589e9ab7b8e3b967ceb36d13b1d
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);
    }
 
}