org.rx.util.BeanMapException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.util;
import lombok.Getter;
import org.rx.exception.InvalidException;
import java.util.Set;
public class BeanMapException extends InvalidException {
@Getter
final Set missedProperties;
public BeanMapException(String message, Set missedProperties) {
super(message);
this.missedProperties = missedProperties;
}
}