Show PersisterException.java syntax highlighted
package ucalgary.ebe.webui.server.service;
import com.google.gwt.user.client.rpc.SerializableException;
public class PersisterException extends SerializableException {
private static final long serialVersionUID = 1L;
private long id;
public PersisterException() {
super();
this.id = 0;
}
public PersisterException(String message, long id) {
super(message);
this.id = id;
}
public PersisterException(String message) {
super(message);
this.id = 0;
}
public void setId(long id) {
this.id = id;
}
public long getId() {
return this.id;
}
}
See more files for this project here