Skip to content
LinkFoundException.java 356 B
Newer Older
package it.inaf.oats.vospace.exception;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(value = HttpStatus.BAD_REQUEST)
public class LinkFoundException extends VoSpaceException {

    public LinkFoundException(String path) {
        super("Link Found at path: " + path);
    }
}