com.talkylabs.reach.exception.InvalidRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reach Show documentation
Show all versions of reach Show documentation
TalkyLabs Reach Java Helper Library
The newest version!
package com.talkylabs.reach.exception;
public class InvalidRequestException extends ReachException {
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 - 2025 Weber Informatics LLC | Privacy Policy