Total Complexity | 1 |
Total Lines | 7 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package com.hltech.pact.gen.domain.pact; |
||
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 | } |
||
12 |