blob: 07a3d3cea2a140d9006e896d168ee5b5e7a4cb01 [file] [log] [blame]
ystxdfd42b32025-06-07 13:26:52 +08001package com.pt.exception;
2
3import org.springframework.http.HttpStatus;
4import org.springframework.web.bind.annotation.ResponseStatus;
5
6@ResponseStatus(HttpStatus.NOT_FOUND)
7public class ResourceNotFoundException extends RuntimeException {
8 public ResourceNotFoundException() {
9 super();
10 }
11
12 public ResourceNotFoundException(String message) {
13 super(message);
14 }
15
16 public ResourceNotFoundException(String message, Throwable cause) {
17 super(message, cause);
18 }
19}