Code Search for Developers
 
 
  

PersisterException.java from MASE: Agile Software Engineering at Krugle


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

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  AgilePlannerWebUIService.java
  AgilePlannerWebUIServiceAsync.java
  PersisterException.java