
com.github.saphyra.exceptionhandling.exception.NotFoundException Maven / Gradle / Ivy
package com.github.saphyra.exceptionhandling.exception;
import com.github.saphyra.exceptionhandling.domain.ErrorMessage;
import org.springframework.http.HttpStatus;
public class NotFoundException extends RestException {
private static final HttpStatus STATUS = HttpStatus.NOT_FOUND;
public NotFoundException(String logMessage) {
super(STATUS, logMessage);
}
public NotFoundException(ErrorMessage errorMessage, String logMessage) {
super(STATUS, errorMessage, logMessage);
}
public NotFoundException(String errorCode, String logMessage) {
super(STATUS, errorCode, logMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy