ILIAS  trunk Revision v12.0_alpha-1338-g8f7e531aa3c
CannotHandle.php
Go to the documentation of this file.
1<?php
2
20
34class CannotHandle implements Response
35{
36 public function getURIPath(): ?string
37 {
38 return null;
39 }
40
41 public function targetCanBeReached(): bool
42 {
43 return false;
44 }
45
46 public function shift(): int
47 {
48 return 0;
49 }
50
51}
Returned by a Handler when it cannot process the given Request at all, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...