增加了种子统计的内容
Change-Id: I139c8cf149c05465d1170baa4c143210bd71c888
diff --git a/src/main/java/com/pt/exception/ResourceNotFoundException.java b/src/main/java/com/pt/exception/ResourceNotFoundException.java
new file mode 100644
index 0000000..07a3d3c
--- /dev/null
+++ b/src/main/java/com/pt/exception/ResourceNotFoundException.java
@@ -0,0 +1,19 @@
+package com.pt.exception;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.bind.annotation.ResponseStatus;
+
+@ResponseStatus(HttpStatus.NOT_FOUND)
+public class ResourceNotFoundException extends RuntimeException {
+ public ResourceNotFoundException() {
+ super();
+ }
+
+ public ResourceNotFoundException(String message) {
+ super(message);
+ }
+
+ public ResourceNotFoundException(String message, Throwable cause) {
+ super(message, cause);
+ }
+}
\ No newline at end of file