1 /* 2 * Copyright (C) 2016, David Pursehouse <david.pursehouse@gmail.com> and others 3 * 4 * This program and the accompanying materials are made available under the 5 * terms of the Eclipse Distribution License v. 1.0 which is available at 6 * https://www.eclipse.org/org/documents/edl-v10.php. 7 * 8 * SPDX-License-Identifier: BSD-3-Clause 9 */ 10 11 package org.eclipse.jgit.lfs.errors; 12 13 /** 14 * Thrown when there is a validation error with one or more of the objects in 15 * the request. 16 * 17 * @since 4.5 18 */ 19 public class LfsValidationError extends LfsException { 20 private static final long serialVersionUID = 1L; 21 22 /** 23 * Constructor for LfsValidationError. 24 * 25 * @param message 26 * error message, which may be shown to an end-user. 27 */ LfsValidationError(String message)28 public LfsValidationError(String message) { 29 super(message); 30 } 31 } 32