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); + } +}