Revision 10626 trunk/applications/appgvSIG/src/com/iver/cit/gvsig/project/documents/exceptions/SaveException.java

View differences:

SaveException.java
40 40
 */
41 41
package com.iver.cit.gvsig.project.documents.exceptions;
42 42

  
43
import java.util.Map;
44

  
45
import org.gvsig.exceptions.BaseException;
46

  
43 47
import com.iver.andami.messages.NotificationManager;
44 48

  
45
public class SaveException extends Exception {
49
public class SaveException extends BaseException {
46 50
	private Exception e;
47 51
	private String c;
48 52
	public SaveException(Exception e, String c) {
49 53
		this.e=e;
50 54
		this.c=c;
51 55
	}
56
	public SaveException() {
57
		// TODO Auto-generated constructor stub
58
	}
52 59
	public void showError(){
53 60
		NotificationManager.addError("Fallo guardando el Proyecto en : "+c,e);
54 61
	}
......
58 65
	public void showWarning(){
59 66
		NotificationManager.addWarning("Guardando el Proyecto en : "+c,e);
60 67
	}
68
	protected Map values() {
69
		// TODO Auto-generated method stub
70
		return null;
71
	}
61 72
}

Also available in: Unified diff