dev.vality.fraudo.exception.UnknownResultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fraudo Show documentation
Show all versions of fraudo Show documentation
Language for describing antifraud patterns
package dev.vality.fraudo.exception;
public class UnknownResultException extends RuntimeException {
public static final String ERROR_MESSAGE = "Unknown result: ";
public UnknownResultException(String result) {
super(ERROR_MESSAGE + result);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy