LfsUnavailable.java

  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. package org.eclipse.jgit.lfs.errors;

  11. import java.text.MessageFormat;

  12. import org.eclipse.jgit.lfs.internal.LfsText;

  13. /**
  14.  * Thrown when LFS is not available.
  15.  *
  16.  * @since 4.5
  17.  */
  18. public class LfsUnavailable extends LfsException {
  19.     private static final long serialVersionUID = 1L;

  20.     /**
  21.      * Constructor for LfsUnavailable.
  22.      *
  23.      * @param name
  24.      *            the repository name.
  25.      */
  26.     public LfsUnavailable(String name) {
  27.         super(MessageFormat.format(LfsText.get().lfsUnavailable, name));
  28.     }
  29. }