value
2024-05-20 9cb6f2a2b7ac422f1b88dab215f1c60cec9292fe
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);
    }
 
}