Files
messagesource/src/main/java/com/rest/api/advice/exception/CUserNotFoundException.java

16 lines
332 B
Java

package com.rest.api.advice.exception;
public class CUserNotFoundException extends RuntimeException {
public CUserNotFoundException(String msg, Throwable t) {
super(msg, t);
}
public CUserNotFoundException(String msg) {
super(msg);
}
public CUserNotFoundException() {
super();
}
}