增加付费片单,修复种子列表搜索排序
Change-Id: Ib645906c0f240f954676790daf2ff0e5f16f6e0a
diff --git a/src/main/java/com/example/myproject/exception/BusinessException.java b/src/main/java/com/example/myproject/exception/BusinessException.java
new file mode 100644
index 0000000..af1b8de
--- /dev/null
+++ b/src/main/java/com/example/myproject/exception/BusinessException.java
@@ -0,0 +1,19 @@
+package com.example.myproject.exception;
+
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+public class BusinessException extends RuntimeException {
+ /**
+ * Constructs a new runtime exception with the specified detail message.
+ * The cause is not initialized, and may subsequently be initialized by a
+ * call to {@link #initCause}.
+ *
+ * @param message the detail message. The detail message is saved for
+ * later retrieval by the {@link #getMessage()} method.
+ */
+ public BusinessException(String message) {
+ super(message);
+ }
+}
+