dashboard
repositories
filestore
activity
search
login
main
/
ruoyidemo
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
2025-08-19
0b10f87268bd511c7d8dddad30060abefa49aab2
[ruoyidemo.git]
/
ruoyi-admin
/
src
/
main
/
java
/
com
/
ruoyi
/
im
/
comm
/
ImBusinessException.java
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);
}
}