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 import java.text.MessageFormat;
14
15 import org.eclipse.jgit.lfs.internal.LfsText;
16
17 /**
18 * Thrown when the repository does not exist for the user.
19 *
20 * @since 4.5
21 */
22 public class LfsRepositoryNotFound extends LfsException {
23 private static final long serialVersionUID = 1L;
24
25 /**
26 * <p>Constructor for LfsRepositoryNotFound.</p>
27 *
28 * @param name
29 * the repository name.
30 */
31 public LfsRepositoryNotFound(String name) {
32 super(MessageFormat.format(LfsText.get().repositoryNotFound, name));
33 }
34 }