1
zj
2025-08-24 4a79b4c9bc6f9f1c6c0f2d8b5edf755535ba2ad1
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);
    }
}