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

org.dellroad.stuff.pobj.distrib.GitMergeConflictException 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 a merge fails due to conflicts.
 */
@SuppressWarnings("serial")
public class GitMergeConflictException extends GitException {

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

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy