unicon.matthews.security.exception.AuthMethodNotSupportedException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 5
rs 10
eloc 4
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A AuthMethodNotSupportedException(String) 0 2 1
1
package unicon.matthews.security.exception;
2
3
import org.springframework.security.authentication.AuthenticationServiceException;
4
5
/**
6
 * 
7
 * @author vladimir.stankovic
8
 *
9
 * Aug 4, 2016
10
 */
11
public class AuthMethodNotSupportedException extends AuthenticationServiceException {
12
    private static final long serialVersionUID = 3705043083010304496L;
13
14
    public AuthMethodNotSupportedException(String msg) {
15
        super(msg);
16
    }
17
}
18