All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.riskified.RiskifiedError Maven / Gradle / Ivy

The newest version!
package com.riskified;

public class RiskifiedError extends Exception {

    public RiskifiedError(Exception ex) {
        super("Error: contact your admin with this error", ex);
    }

    public RiskifiedError(String string) {
        super("Error: contact your admin with this error: " + string);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy