mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
18 lines
277 B
Java
18 lines
277 B
Java
package com.ruoyi.common.exception;
|
|
|
|
import java.io.Serial;
|
|
|
|
/**
|
|
* 演示模式异常
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public class DemoModeException extends RuntimeException {
|
|
|
|
@Serial
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public DemoModeException() {
|
|
}
|
|
}
|