16 lines
352 B
Java
16 lines
352 B
Java
package com.rest.api.advice.exception;
|
|
|
|
public class CEmailSigninFailedException extends RuntimeException {
|
|
public CEmailSigninFailedException(String msg, Throwable t) {
|
|
super(msg, t);
|
|
}
|
|
|
|
public CEmailSigninFailedException(String msg) {
|
|
super(msg);
|
|
}
|
|
|
|
public CEmailSigninFailedException() {
|
|
super();
|
|
}
|
|
}
|