16 lines
380 B
Java
16 lines
380 B
Java
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();
|
|
}
|
|
}
|