import {createNotification} from "../../create-notification.mjs";
import {ERROR_NOTIFICATION_NAME} from "./error-notification-name.constant.mjs";
export function createErrorNotification(error) {
return createNotification(ERROR_NOTIFICATION_NAME, error);
}