1 package com.github.sbugat.rundeckmonitor.configuration;
2
3
4
5
6
7
8
9 public final class InvalidPropertyException extends Exception {
10
11
12 private static final long serialVersionUID = 4577273435503511931L;
13
14
15 private final String property;
16
17
18 private final String propertyValue;
19
20
21
22
23
24
25
26 public InvalidPropertyException(final String propertyArg, final String propertyValueArg) {
27 property = propertyArg;
28 propertyValue = propertyValueArg;
29 }
30
31
32
33
34
35
36 public String getProperty() {
37 return property;
38 }
39
40
41
42
43
44
45 public String getPropertyValue() {
46 return propertyValue;
47 }
48 }