PojoNonCompliantWithPodamException(String)   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.domain.pact;
2
3
public class PojoNonCompliantWithPodamException extends RuntimeException {
4
5
    private static final String MESSAGE_PLACEHOLDER =
6
        "Unable to instantiate %s object with podam due to missing noArgsConstructor + setters / allArgsConstructor";
7
8
    public PojoNonCompliantWithPodamException(String className) {
9
        super(String.format(MESSAGE_PLACEHOLDER, className));
10
    }
11
}
12