HTMLPurifier_Exception
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 1
dl 0
loc 2
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Global exception class for HTML Purifier; any exceptions we throw
5
 * are from here.
6
 */
7
class HTMLPurifier_Exception extends Exception
8
{
9
10
}
11
12
// vim: et sw=4 sts=4
13