Skip to content

Commit

Permalink
#1 feat: BaseException 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JoongHyun-Kim committed Jan 16, 2024
1 parent 02062ac commit 8e54358
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/com/kkobugi/puremarket/common/BaseException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.kkobugi.puremarket.common;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;

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

0 comments on commit 8e54358

Please sign in to comment.