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

com.tinypass.client.common.ApiParameterException Maven / Gradle / Ivy

There is a newer version: 16.331.0
Show newest version
package com.tinypass.client.common;

/**
 * Created by alexander vorozhtsov
 * 8/12/2014
 */
public class ApiParameterException extends Exception {

    private String key;

    public ApiParameterException(String key, String message) {
        super(message);
        this.key = key;
    }

    public String getKey() {
        return key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy