
com.riskified.validations.FieldBadFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riskified-sdk Show documentation
Show all versions of riskified-sdk Show documentation
Risikified rest api SDK for java
The newest version!
package com.riskified.validations;
public class FieldBadFormatException extends Exception {
private Object source;
public FieldBadFormatException(String message) {
super(message);
}
public FieldBadFormatException(Object source, String message) {
super(message);
this.source = source;
}
public Object getSource() {
return source;
}
public void setSource(Object source) {
this.source = source;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy