From e3193c3ac212cd4f8af5d590483396e214fc03b3 Mon Sep 17 00:00:00 2001 From: Umjiseung <127853946+Umjiseung@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:03:26 +0900 Subject: [PATCH] =?UTF-8?q?add=20::=20NotAccessStudentException=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../notice/exception/NotAccessStudentException.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/main/java/com/mindway/server/v2/domain/notice/exception/NotAccessStudentException.java diff --git a/src/main/java/com/mindway/server/v2/domain/notice/exception/NotAccessStudentException.java b/src/main/java/com/mindway/server/v2/domain/notice/exception/NotAccessStudentException.java new file mode 100644 index 0000000..29b412d --- /dev/null +++ b/src/main/java/com/mindway/server/v2/domain/notice/exception/NotAccessStudentException.java @@ -0,0 +1,10 @@ +package com.mindway.server.v2.domain.notice.exception; + +import com.mindway.server.v2.global.exception.ErrorCode; +import com.mindway.server.v2.global.exception.MindWayException; + +public class NotAccessStudentException extends MindWayException { + public NotAccessStudentException() { + super(ErrorCode.NOT_ACCESS_STUDENT); + } +}