ILIAS  release_7 Revision v7.30-3-g800a261c036
HandlerResult.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2
4
5use JsonSerializable;
6
12interface HandlerResult extends JsonSerializable
13{
14 public const STATUS_OK = 1;
15 public const STATUS_FAILED = 2;
16
17
18 public function getStatus() : int;
19
20
21 public function getFileIdentifier() : string;
22
23
24 public function getMessage() : string;
25}
An exception for terminatinating execution or to throw for unit testing.