2021-07-17 20:44:27 +08:00
|
|
|
package com.ruoyi.oss.exception;
|
|
|
|
|
2023-01-13 23:22:30 +08:00
|
|
|
import java.io.Serial;
|
|
|
|
|
2021-07-17 20:44:27 +08:00
|
|
|
/**
|
|
|
|
* OSS异常类
|
|
|
|
*
|
|
|
|
* @author Lion Li
|
|
|
|
*/
|
|
|
|
public class OssException extends RuntimeException {
|
|
|
|
|
2023-01-13 23:22:30 +08:00
|
|
|
@Serial
|
2022-01-13 09:49:26 +08:00
|
|
|
private static final long serialVersionUID = 1L;
|
2021-07-17 20:44:27 +08:00
|
|
|
|
2022-01-13 09:49:26 +08:00
|
|
|
public OssException(String msg) {
|
|
|
|
super(msg);
|
|
|
|
}
|
2021-07-17 20:44:27 +08:00
|
|
|
|
|
|
|
}
|