MallException.java 557 Bytes
package com.diligrp.cashier.mall.exception;


import com.diligrp.cashier.shared.ErrorCode;
import com.diligrp.cashier.shared.exception.PlatformServiceException;

/**
 * @ClassName MallException.java
 * @author dengwei
 * @version 1.0.0
 * @date 2025-12-25 14:34
 */
public class MallException extends PlatformServiceException {

    public MallException(String message) {
        super(ErrorCode.SYSTEM_UNKNOWN_ERROR, message, Boolean.TRUE);
    }

    public MallException(String code, String message) {
        super(code, message, Boolean.TRUE);
    }
}