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 user has read, but not write access. Only applicable when the 19 * operation in the request is "upload". 20 * 21 * @since 4.5 22 */ 23 public class LfsRepositoryReadOnly extends LfsException { 24 private static final long serialVersionUID = 1L; 25 26 /** 27 * <p>Constructor for LfsRepositoryReadOnly.</p> 28 * 29 * @param name 30 * the repository name. 31 */ LfsRepositoryReadOnly(String name)32 public LfsRepositoryReadOnly(String name) { 33 super(MessageFormat.format(LfsText.get().repositoryReadOnly, name)); 34 } 35 } 36