com.konduto.sdk.exceptions.KondutoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Easily integrate with Konduto (https://konduto.com), a fraud prevention service.
package com.konduto.sdk.exceptions;
/**
*
* This exception is the parent of all Konduto exceptions.
*
* Use it to catch any instance of its children and handle as you wish
* (e.g saving an order, reporting to our support team automatically, etc.)
*
*/
public abstract class KondutoException extends Exception {
public abstract String getMessage();
}