Crunchy
2024-08-03 85b229604df27e6399e968076e3f366dc30e81b4
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);
    }
 
}