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

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

package com.dft.bigcommerce.exception;

public class NotFoundException extends Exception {
    private static final String DEFAULT_MESSAGE = "The requested resource could not be found";

    public NotFoundException() {
        super(DEFAULT_MESSAGE);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy