com.hltech.pact.gen.PactGenerationException   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A PactGenerationException(String) 0 2 1
A PactGenerationException(String,Throwable) 0 2 1
1
package com.hltech.pact.gen;
2
3
public class PactGenerationException extends RuntimeException {
4
5
    public PactGenerationException(String message) {
6
        super(message);
7
    }
8
9
    public PactGenerationException(String message, Throwable cause) {
10
        super(message, cause);
11
    }
12
}
13