com.strider.datadefender.anonymizer.DatabaseAnonymizerException   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 DatabaseAnonymizerException(String,Throwable) 0 2 1
A DatabaseAnonymizerException(String) 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
package com.strider.datadefender.anonymizer;
17
18
/**
19
 * Package-level exception
20
 * @author Armenak Grigoryan
21
 */
22
public class DatabaseAnonymizerException extends Exception {
23
    private static final long serialVersionUID = 1L;
24
25
    public DatabaseAnonymizerException(final String msg) {
26
        super(msg);
27
    }
28
29
    public DatabaseAnonymizerException(final String msg, final Throwable t) {
30
        super(msg, t);
31
    }
32
}
33