SpringBoot2로 Rest api 만들기(10) – Social Login 연동(kakao)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.rest.api.advice.exception;
|
||||
|
||||
public class CUserExistException extends RuntimeException {
|
||||
public CUserExistException(String msg, Throwable t) {
|
||||
super(msg, t);
|
||||
}
|
||||
|
||||
public CUserExistException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
||||
public CUserExistException() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user