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

com.sixestates.exception.InvalidRequestException Maven / Gradle / Ivy

Go to download

A Java SDK for communicating with the 6Estates Intelligent Document Processing(IDP) Platform

There is a newer version: 8.2.3
Show newest version
package com.sixestates.exception;

public class InvalidRequestException extends IdpException {

    private static final long serialVersionUID = 1L;

    private final String param;

    public InvalidRequestException(final String message) {
        super(message, null);
        this.param = null;
    }

    public InvalidRequestException(final String message, final String param) {
        super(message, null);
        this.param = param;
    }

    public InvalidRequestException(final String message, final String param, final Throwable cause) {
        super(message, cause);
        this.param = param;
    }

    public String getParam() {
        return param;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy