All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ajoberstar.grgit.PushException Maven / Gradle / Ivy

package org.ajoberstar.grgit;

import org.eclipse.jgit.api.errors.TransportException;

public class PushException extends TransportException {
  public PushException(String message) {
    super(message);
  }

  public PushException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy