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

org.openlca.git.actions.ConflictException Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package org.openlca.git.actions;

import org.openlca.core.model.ModelType;
import org.openlca.git.model.ModelRef;

public class ConflictException extends RuntimeException {

	private static final long serialVersionUID = -6048314745581027571L;

	public ConflictException(ModelRef ref) {
		this(ref.type, ref.refId);
	}

	public ConflictException(ModelType type, String refId) {
		super("No resolution for conflict with model " + type.name() + " " + refId);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy