js/sys/siteapp.exception.js   A
last analyzed

Size

Lines of Code 9

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
nc 1
dl 0
loc 9
rs 10
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A siteapp.exception.js ➔ ??? 0 3 1
1
/**
2
 * [Siteapp] - multi-purpose frontend application
3
 * 
4
 * Siteapp exception 
5
 *     
6
 * @package     [Siteapp]
7
 * @subpackage  [Siteapp] core
8
 * @author      Björn Bartels <[email protected]>
9
 * @link        https://gitlab.bjoernbartels.earth/groups/themes
10
 * @license     http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
11
 * @copyright   copyright (c) 2016 Björn Bartels <[email protected]>
12
 * 
13
 * @namespace   Siteapp
14
 * @module      Siteapp.Exception
15
 */
16
	
17
class Exception extends Error {
18
19
	get name () {
20
		return "SiteappException";
21
	}
22
    
23
};
24
25
export {Exception};
26