Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
Custom exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Jan 22, 2024
1 parent 57c07de commit 10e88e2
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.example.daemawiki.global.error.exception;

import com.example.daemawiki.global.error.ErrorCode;
import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public class CustomException extends RuntimeException {
private final ErrorCode errorCode;
}

0 comments on commit 10e88e2

Please sign in to comment.