com.strider.datadefender.discoverer.FileDiscoveryException   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 6
c 0
b 0
f 0
dl 0
loc 9
ccs 0
cts 4
cp 0
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A FileDiscoveryException(String) 0 2 1
A FileDiscoveryException(String,Throwable) 0 2 1
1
/*
2
 *
3
 * Copyright 2014, Armenak Grigoryan, and individual contributors as indicated
4
 * by the @authors tag. See the copyright.txt in the distribution for a
5
 * full listing of individual contributors.
6
 *
7
 * This is free software; you can redistribute it and/or modify it
8
 * under the terms of the GNU Lesser General Public License as
9
 * published by the Free Software Foundation; either version 2.1 of
10
 * the License, or (at your option) any later version.
11
 *
12
 * This software is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
 * Lesser General Public License for more details.
16
 *
17
 */
18
19
20
21
package com.strider.datadefender.discoverer;
22
23
/**
24
 * Application-level exception
25
 * @author Armenak Grigoryan
26
 */
27
public class FileDiscoveryException extends Exception {
28
    private static final long serialVersionUID = 1L;
29
30
    public FileDiscoveryException(final String msg) {
31
        super(msg);
32
    }
33
34
    public FileDiscoveryException(final String msg, final Throwable t) {
35
        super(msg, t);
36
    }
37
}
38
39
40
//~ Formatted by Jindent --- http://www.jindent.com
41