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

com.emily.infrastructure.web.exception.entity.BusinessException Maven / Gradle / Ivy

The newest version!
package com.emily.infrastructure.web.exception.entity;

import com.emily.infrastructure.web.exception.type.AppStatusType;

/**
 * 业务异常
 *
 * @author Emily
 * @since 2021/10/12
 */
public class BusinessException extends BasicException {
    public BusinessException() {
        super(AppStatusType.EXCEPTION);
    }

    public BusinessException(AppStatusType httpStatus) {
        super(httpStatus);
    }

    public BusinessException(int status, String errorMessage) {
        super(status, errorMessage);
    }

    public BusinessException(int status, String errorMessage, boolean error) {
        super(status, errorMessage, error);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy