Skip to content

Commit

Permalink
[Fix] #30 : 컨벤션에 맞게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
its-sky committed Jan 6, 2024
1 parent e7fc47d commit 8e86d6c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import org.moonshot.server.global.common.response.ErrorType;

public class KeyResultInvalidPositionException extends MoonshotException {

public KeyResultInvalidPositionException() {
super(ErrorType.INVALID_KEY_RESULT_ORDER);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import org.moonshot.server.global.common.response.ErrorType;

public class KeyResultNumberExceededException extends MoonshotException {

public KeyResultNumberExceededException() {
super(ErrorType.ACTIVE_KEY_RESULT_NUMBER_EXCEEDED);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import org.moonshot.server.global.common.response.ErrorType;

public class TaskInvalidPositionException extends MoonshotException {

public TaskInvalidPositionException() {
super(ErrorType.INVALID_TASK_ORDER);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import org.moonshot.server.global.common.response.ErrorType;

public class TaskNumberExceededException extends MoonshotException {

public TaskNumberExceededException() {
super(ErrorType.ACTIVE_TASK_NUMBER_EXCEEDED);
}

}

0 comments on commit 8e86d6c

Please sign in to comment.