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

org.dellroad.stuff.pobj.distrib.GitException Maven / Gradle / Ivy


/*
 * Copyright (C) 2012 Archie L. Cobbs. All rights reserved.
 */

package org.dellroad.stuff.pobj.distrib;

/**
 * Exception thrown by a {@link GitRepository} when an unexpected error occurs.
 */
@SuppressWarnings("serial")
public class GitException extends RuntimeException {

    public GitException(String message) {
        super(message);
    }

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy