1
zj
2025-08-30 bab6c7bbf9a3942fa89ed399bc6c5f2971bedb15
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.im.comm;
 
public class ImBusinessException extends RuntimeException {
    public ImBusinessException(String message) {
        super(message);
    }
 
    public ImBusinessException(String message, Throwable cause) {
        super(message, cause);
    }
}