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

com.siftscience.exception.MissingFieldException Maven / Gradle / Ivy

There is a newer version: 3.16.0
Show newest version
package com.siftscience.exception;

import com.siftscience.SiftResponse;

public class MissingFieldException extends InvalidRequestException {
    public MissingFieldException(String msg) {
        super(msg);
    }

    public MissingFieldException(SiftResponse response) {
        super(response);
    }

    public static String messageForKey(String key) {
        return "Required field \"" + key + "\" is missing.";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy