From 51f5bc58c70aaee1712fca8a98000b49179adc17 Mon Sep 17 00:00:00 2001 From: wkc <978997012@qq.com> Date: Mon, 2 Mar 2026 09:59:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E6=B5=81=E6=B0=B4?= =?UTF-8?q?=E5=88=86=E6=9E=90API=E5=BC=82=E5=B8=B8=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lsfx/exception/LsfxApiException.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ccdi-lsfx/src/main/java/com/ruoyi/lsfx/exception/LsfxApiException.java diff --git a/ccdi-lsfx/src/main/java/com/ruoyi/lsfx/exception/LsfxApiException.java b/ccdi-lsfx/src/main/java/com/ruoyi/lsfx/exception/LsfxApiException.java new file mode 100644 index 0000000..1ebc867 --- /dev/null +++ b/ccdi-lsfx/src/main/java/com/ruoyi/lsfx/exception/LsfxApiException.java @@ -0,0 +1,26 @@ +package com.ruoyi.lsfx.exception; + +/** + * 流水分析平台API异常 + */ +public class LsfxApiException extends RuntimeException { + + private String errorCode; + + public LsfxApiException(String message) { + super(message); + } + + public LsfxApiException(String message, Throwable cause) { + super(message, cause); + } + + public LsfxApiException(String errorCode, String message) { + super(message); + this.errorCode = errorCode; + } + + public String getErrorCode() { + return errorCode; + } +}