Skip to content

Commit

Permalink
add :: NotAccessStudentException 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Umjiseung committed Apr 17, 2024
1 parent 0464d2c commit e3193c3
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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);
}
}

0 comments on commit e3193c3

Please sign in to comment.