SpringBoot2로 Rest api 만들기(8) – SpringSecurity를 이용한 인증 및 권한부여
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.rest.api.advice.exception;
|
||||
|
||||
public class CAuthenticationEntryPointException extends RuntimeException {
|
||||
public CAuthenticationEntryPointException(String msg, Throwable t) {
|
||||
super(msg, t);
|
||||
}
|
||||
|
||||
public CAuthenticationEntryPointException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
||||
public CAuthenticationEntryPointException() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user