All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sdl.webapp.tridion.fields.exceptions.TaxonomyNotFoundException Maven / Gradle / Ivy

package com.sdl.webapp.tridion.fields.exceptions;

import com.sdl.webapp.common.exceptions.DxaItemNotFoundException;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(HttpStatus.NOT_FOUND)
public class TaxonomyNotFoundException extends DxaItemNotFoundException {
    public TaxonomyNotFoundException(String message) {
        super(message);
    }

    public TaxonomyNotFoundException(Throwable cause) {
        super(cause);
    }

    public TaxonomyNotFoundException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy