InvalidRelationshipException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
c 0
b 0
f 0
wmc 0
1
<?php
2
3
namespace Simply\Database\Exception;
4
5
/**
6
 * Exception that gets thrown when trying to use undefined relationships or incorrect types of relationships.
7
 * @author Riikka Kalliomäki <[email protected]>
8
 * @copyright Copyright (c) 2018 Riikka Kalliomäki
9
 * @license http://opensource.org/licenses/mit-license.php MIT License
10
 */
11
class InvalidRelationshipException extends \LogicException
12
{
13
}
14