package com.saas.shared.exception;

public class ResourceNotFoundException extends BusinessException {
    public ResourceNotFoundException(String resource, Object id) {
        super(ErrorCode.USER_NOT_FOUND, String.format("%s with ID %s not found", resource, id));
    }
}
