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

com.venky.core.checkpoint.Mergeable Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
package com.venky.core.checkpoint;


public interface Mergeable extends Cloneable{
	public void merge(T another);
	
	public static class MergeFailedException extends RuntimeException {
		private static final long serialVersionUID = 5861184850899947849L;
		public MergeFailedException(){
			super();
		}
		public MergeFailedException(String message){
			super(message);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy