au.csiro.pathling.errors.InvalidUserInputError 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 invalid user input is detected, and we want to send the details of the problem back
* to the user.
*
* @author John Grimes
*/
public class InvalidUserInputError extends RuntimeException {
private static final long serialVersionUID = -5378096951525707512L;
public InvalidUserInputError(final String message) {
super(message);
}
public InvalidUserInputError(final String message, final Throwable cause) {
super(message, cause);
}
public InvalidUserInputError(final Throwable cause) {
super(cause);
}
}