Skip to content

Commit

Permalink
add: JwtTokenMissingException, JwtTokenMalformedException
Browse files Browse the repository at this point in the history
  • Loading branch information
DuyTC1811 committed Jul 30, 2023
1 parent 844aeb3 commit 1492541
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package io.exceptions.models;

import javax.naming.AuthenticationException;

public class JwtTokenMalformedException extends AuthenticationException {
public JwtTokenMalformedException(String msg) {
super(msg);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package io.exceptions.models;

import javax.naming.AuthenticationException;

public class JwtTokenMissingException extends AuthenticationException {
public JwtTokenMissingException(String msg) {
super(msg);
}
}

0 comments on commit 1492541

Please sign in to comment.