com.strider.datadefender.requirement.RequirementException   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 6
ccs 0
cts 4
cp 0
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A RequirementException(String) 0 2 1
A RequirementException(String,Throwable) 0 2 1
1
/*
2
 * Copyright 2014, Armenak Grigoryan, and individual contributors as indicated
3
 * by the @authors tag. See the copyright.txt in the distribution for a
4
 * full listing of individual contributors.
5
 *
6
 * This is free software; you can redistribute it and/or modify it
7
 * under the terms of the GNU Lesser General Public License as
8
 * published by the Free Software Foundation; either version 2.1 of
9
 * the License, or (at your option) any later version.
10
 *
11
 * This software is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
 * Lesser General Public License for more details.
15
 *
16
 */
17
package com.strider.datadefender.requirement;
18
19
import com.strider.datadefender.DataDefenderException;
20
21
/**
22
 * Package level exception. Extends application level exception.
23
 * @author Zaahid Bateson
24
 */
25
public class RequirementException extends DataDefenderException {
26
    public RequirementException(final String msg) {
27
        super(msg);
28
    }
29
    public RequirementException(final String msg, final Throwable t) {
30
        super(msg, t);
31
    }
32
}
33