PactGenerationException(String,Throwable)   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
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