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

Commit

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

import com.example.daemawiki.global.error.ErrorCode;
import com.example.daemawiki.global.error.exception.CustomException;

public class PasswordMismatchException extends CustomException {
public static final CustomException EXCEPTION = new PasswordMismatchException();

private PasswordMismatchException() {
super(ErrorCode.PASSWORD_MISMATCH);
}

}

0 comments on commit 1dac307

Please sign in to comment.