xref: /JGit/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/errors/LfsRepositoryNotFound.java (revision 5c5f7c6b146b24f2bd4afae1902df85ad6e57ea3)
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 	 */
LfsRepositoryNotFound(String name)31 	public LfsRepositoryNotFound(String name) {
32 		super(MessageFormat.format(LfsText.get().repositoryNotFound, name));
33 	}
34 }
35