All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.csiro.pathling.errors.InvalidUserInputError Maven / Gradle / Ivy

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);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy