blob: a6256c50344bc4521d2ce36c57c38c2176d5a7bf (
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
47
48
49
50
51
52
|
/*
* Copyright (C) 2015, Google Inc. 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.transport;
import java.io.IOException;
/**
* An exception to be thrown when the write operation is aborted.
* <p>
* That can be thrown inside
* {@link org.eclipse.jgit.transport.ObjectCountCallback#setObjectCount(long)}.
*
* @since 4.1
*/
public class WriteAbortedException extends IOException {
private static final long serialVersionUID = 1L;
/**
* Construct a {@code WriteAbortedException}.
*/
public WriteAbortedException() {
}
/**
* Construct a {@code WriteAbortedException}.
*
* @param s message describing the issue
*/
public WriteAbortedException(String s) {
super(s);
}
/**
* Construct a {@code WriteAbortedException}.
*
* @param s
* message describing the issue
* @param why
* a lower level implementation specific issue.
*/
public WriteAbortedException(String s, Throwable why) {
super(s, why);
}
}
|