blob: a520c1c0c4f53f9f1ba833740f84aa7da361aaea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* Copyright (C) 2016, Christian Halstrick <christian.halstrick@sap.com> and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.lfs.errors;
import java.io.IOException;
/**
* Thrown when a LFS configuration problem has been detected (i.e. unable to
* find the remote LFS repository URL).
*
* @since 4.11
*/
public class LfsConfigInvalidException extends IOException {
private static final long serialVersionUID = 1L;
/**
* Constructor for LfsConfigInvalidException.
*
* @param msg
* the error description
*/
public LfsConfigInvalidException(String msg) {
super(msg);
}
/**
* Constructor for LfsConfigInvalidException.
*
* @param msg
* the error description
* @param e
* cause of this exception
* @since 5.0
*/
public LfsConfigInvalidException(String msg, Exception e) {
super(msg, e);
}
}
|