blob: 9e096da0983edde95c1b05392aa58f9d82c4cd2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Studip;
use Studip\Exception;
/**
* The LTIException class represents exceptions that occur in the Stud.IP LTI interface.
*/
class LTIException extends Exception
{
/**
* The REGISTRATION_NOT_LINKED_TO_TOOL status code represents the case where
* a LTI tool registration is not linked to a tool.
*/
public const REGISTRATION_NOT_LINKED_TO_TOOL = 1;
}
|