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