Revision 41486 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.exportto/org.gvsig.exportto.lib/org.gvsig.exportto.lib.api/src/main/java/org/gvsig/exportto/ExporttoServiceException.java

View differences:

ExporttoServiceException.java
40 40
        "An error has been produced exporting a store";
41 41

  
42 42
    private static final String KEY = "_ExporttoServiceException";
43
    private Feature feature = null;
43
    protected Feature feature = null;
44 44

  
45 45
    /**
46 46
     * Creates a new {@link ExporttoServiceException}.
......
52 52
        super(MESSAGE, cause, KEY, serialVersionUID);
53 53
    }
54 54

  
55
    protected ExporttoServiceException(String message, Throwable cause, String key, long code) {
56
        super(message, cause, key, code);
57
    }
58
    
55 59
    public ExporttoServiceException(Throwable cause, Feature feature) {
56 60
        super(MESSAGE, cause, KEY, serialVersionUID);
57 61
        this.feature = feature;

Also available in: Unified diff