com.venky.core.checkpoint.Mergeable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
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);
}
}
}