com.tinypass.client.common.ApiParameterException Maven / Gradle / Ivy
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;
}
}