package org.outerj.daisy.sync;
public class EntityNotFoundException extends Exception {
private static final long serialVersionUID = -5204876924715645299L;
public EntityNotFoundException(String message){
super(message);
}
public EntityNotFoundException(Throwable e){
super(e);
}
public EntityNotFoundException(String message, Throwable e){
super(message, e);
}
}
|