aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/TaskProcessing/Events/TaskFailedEvent.php
blob: df3de34c03677801b4ffd0fa644291043f77fa0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCP\TaskProcessing\Events;

use OCP\TaskProcessing\Task;

/**
 * @since 30.0.0
 */
class TaskFailedEvent extends AbstractTaskProcessingEvent {
	/**
	 * @param Task $task
	 * @param string $errorMessage
	 * @since 30.0.0
	 */
	public function __construct(
		Task $task,
		private readonly string $errorMessage,
	) {
		parent::__construct($task);
	}

	/**
	 * @return string
	 * @since 30.0.0
	 */
	public function getErrorMessage(): string {
		return $this->errorMessage;
	}
}