SnapshotException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php
2
/** SnapshotException class */
3
4
namespace smtech\GradingAnalytics\Snapshots\Exceptions;
5
6
/**
7
 * Exceptions thrown within the Snapshot namespace
8
 *
9
 * @author Seth Battis <[email protected]>
10
 */
11
class SnapshotException extends \smtech\ReflexiveCanvasLTI\Exception\ConfigurationException
12
{
13
    const COURSE_ID = 100;
14
}
15