Add missing jwt claim exception (#43)

This commit is contained in:
TonCherAmi 2021-08-10 16:31:28 +03:00 committed by GitHub
parent 153aaf7608
commit 195d2f16c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package ru.touchin.auth.security.jwt.exceptions
import ru.touchin.common.exceptions.CommonException
class JwtMissingClaimException(claim: String) : CommonException("missing jwt claim $claim")