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

com.icthh.xm.commons.exceptions.BusinessNotFoundException Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package com.icthh.xm.commons.exceptions;

import java.util.Map;

/**
 * Extended exception from {@link BusinessException} with response code 404
 * @author maximbogun
 */
public class BusinessNotFoundException extends BusinessException {

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

    public BusinessNotFoundException(String code, String message) {
        super(code, message);
    }

    public BusinessNotFoundException(String code, String message, Map paramMap) {
        super(code, message, paramMap);
    }

    public BusinessNotFoundException(String message, Map paramMap) {
        super(message, paramMap);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy