au.csiro.pathling.errors.UnexpectedResponseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities Show documentation
Show all versions of utilities Show documentation
Utility functions used by different components of Pathling.
The newest version!
/*
* Copyright © 2018-2022, Commonwealth Scientific and Industrial Research
* Organisation (CSIRO) ABN 41 687 119 230. Licensed under the CSIRO Open Source
* Software Licence Agreement.
*/
package au.csiro.pathling.errors;
/**
* Thrown when a response from the upstream server does not match expectations.
*
* @author Piotr Szul
*/
public class UnexpectedResponseException extends RuntimeException {
private static final long serialVersionUID = 5953491164133388069L;
/**
* @param message The detailed message for the exception
*/
public UnexpectedResponseException(final String message) {
super(message);
}
}