* }
* </pre>
*
- * @see <a href="http://git-htmldocs.googlecode.com/git/git-archive.html"
- * >Git documentation about archive</a>
+ * @see <a href="http://git-htmldocs.googlecode.com/git/git-archive.html" >Git
+ * documentation about archive</a>
*
- * @since 3.0
+ * @since 3.1
*/
public class ArchiveCommand extends GitCommand<OutputStream> {
/**
private static final long serialVersionUID = 1L;
/**
- * Constructs a new exception with the specified detail
- * message and cause.
+ * Constructs a new exception with the specified detail message and cause.
*
* @param message
* detail message
* @param cause
* cause
+ * @since 3.1
*/
protected GitAPIException(String message, Throwable cause) {
super(message, cause);
}
/**
- * Constructs a new exception with the specified detail
- * message and no cause.
+ * Constructs a new exception with the specified detail message and no
+ * cause.
*
* @param message
* detail message
+ * @since 3.1
*/
protected GitAPIException(String message) {
super(message);
* @param what
* string describing the problem identified by the hook. The
* string must not end with an LF, and must not contain an LF.
+ * @since 3.1
*/
public void sendMessage(String what) {
try {
}
}
- /** @return an underlying stream for sending messages to the client, or null. */
+ /**
+ * @return an underlying stream for sending messages to the client, or null.
+ * @since 3.1
+ */
public OutputStream getMessageOutputStream() {
return msgOut;
}