com.geotab.http.exception.InvalidRequestException Maven / Gradle / Ivy
/*
*
* 2020 Copyright (C) Geotab Inc. All rights reserved.
*/
package com.geotab.http.exception;
/**
* The exception that is thrown when an invalid request was made to a server.
*/
public class InvalidRequestException extends JsonRpcErrorDataException {
public InvalidRequestException() {
super("Invalid request");
}
public InvalidRequestException(String message, Throwable cause) {
super(message, cause);
}
}