Skip to content

Commit

Permalink
add: (#9) InvalidTokenException
Browse files Browse the repository at this point in the history
  • Loading branch information
softpeanut committed Aug 31, 2022
1 parent d0d881a commit 82a8aca
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package team.comit.simtong.global.security.exception

import team.comit.simtong.global.error.BusinessException
import team.comit.simtong.global.security.error.SecurityErrorCode

/**
*
* Invalid Token Error를 발생시키는 InvalidTokenException
*
* @author kimbeomjin
* @date 2022/08/31
* @version 1.0.0
**/
class InvalidTokenException private constructor() : BusinessException(SecurityErrorCode.INVALID_TOKEN) {

companion object {
@JvmField
val EXCEPTION = InvalidTokenException()
}
}

0 comments on commit 82a8aca

Please sign in to comment.