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

com.dft.bigcommerce.exception.UnProcessableEntityException Maven / Gradle / Ivy

package com.dft.bigcommerce.exception;

public class UnProcessableEntityException extends Exception {
    private static final String DEFAULT_MESSAGE = "The requested resource cannot be processed";

    public UnProcessableEntityException() {
        super(DEFAULT_MESSAGE);
    }

    public UnProcessableEntityException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy