Skip to content

Commit

Permalink
[ADD] add baseException
Browse files Browse the repository at this point in the history
  • Loading branch information
devyubin committed Aug 17, 2023
1 parent 27ebb92 commit a3eeb63
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/java/com/haemil/backend/global/config/BaseException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.haemil.backend.global.config;

import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public class BaseException extends Exception {
private ResponseStatus status;
}

0 comments on commit a3eeb63

Please sign in to comment.