Add writeTree support to DirCache
[egit/charleso.git] / org.spearce.jgit / src / org / spearce / jgit / errors / TransportException.java
blob7fbbc5a2a5317ef2f1dd31174ae0317e0624e5d4
1 /*
2 * Copyright (C) 2007, Robin Rosenberg <robin.rosenberg@dewire.com>
3 * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or
8 * without modification, are permitted provided that the following
9 * conditions are met:
11 * - Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * - Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * - Neither the name of the Git Development Community nor the
20 * names of its contributors may be used to endorse or promote
21 * products derived from this software without specific prior
22 * written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
25 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
26 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
34 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 package org.spearce.jgit.errors;
41 import java.io.IOException;
43 import org.spearce.jgit.transport.URIish;
45 /**
46 * Indicates a protocol error has occurred while fetching/pushing objects.
48 public class TransportException extends IOException {
49 private static final long serialVersionUID = 1L;
51 /**
52 * Constructs an TransportException with the specified detail message
53 * prefixed with provided URI.
55 * @param uri
56 * URI used for transport
57 * @param s
58 * message
60 public TransportException(final URIish uri, final String s) {
61 super(uri.setPass(null) + ": " + s);
64 /**
65 * Constructs an TransportException with the specified detail message
66 * prefixed with provided URI.
68 * @param uri
69 * URI used for transport
70 * @param s
71 * message
72 * @param cause
73 * root cause exception
75 public TransportException(final URIish uri, final String s,
76 final Throwable cause) {
77 this(uri.setPass(null) + ": " + s, cause);
80 /**
81 * Constructs an TransportException with the specified detail message.
83 * @param s
84 * message
86 public TransportException(final String s) {
87 super(s);
90 /**
91 * Constructs an TransportException with the specified detail message.
93 * @param s
94 * message
95 * @param cause
96 * root cause exception
98 public TransportException(final String s, final Throwable cause) {
99 super(s);
100 initCause(cause);