dalabai's picture
Upload folder using huggingface_hub
9373c61 verified
raw
history blame
332 Bytes
package com.dalab.policyengine.common;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(HttpStatus.CONFLICT)
public class ConflictException extends RuntimeException {
public ConflictException(String message) {
super(message);
}
}