Revision 1079

View differences:

org.gvsig.raster/trunk/org.gvsig.raster/org.gvsig.raster.fmap/src/main/java/org/gvsig/raster/fmap/layers/DefaultFLyrRaster.java
943 943
			// Guardamos la GeoReferenciacion de cada dataset
944 944
			try {
945 945
				dataStore.saveGeoreferencingToRmf();
946
			} catch (RmfSerializerException e) {
947
				logger.error("error_salvando_rmf", this, e);
946
			} catch (Exception e) {
947
				logger.info("error_salvando_rmf", e);
948 948
			}
949 949

  
950 950
			if (this.isRemoveRasterFlag()) {
org.gvsig.raster/trunk/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.api/src/main/java/org/gvsig/fmap/dal/coverage/exception/RemoteServiceException.java
29 29
public class RemoteServiceException extends Exception {
30 30
	private static final long serialVersionUID = 1L;
31 31
	
32
	String message;
33

  
34 32
	public RemoteServiceException() {
35 33
		super();
36 34
	}
......
41 39
	 * @param message
42 40
	 */
43 41
	public RemoteServiceException(String message) {
44
        super();
45
        this.message = message;
42
        super(message);
46 43
	}
47 44

  
48 45
	/**
org.gvsig.raster.wms/trunk/org.gvsig.raster.wms/org.gvsig.raster.wms.app/org.gvsig.raster.wms.app.wmsclient/src/main/java/org/gvsig/raster/wms/app/wmsclient/layer/FLyrWMS.java
354 354
				try {
355 355
					drawTile(g, viewPort, cancellable, scale);
356 356
				} catch (LoadLayerException e) {
357
					setAvailable(false);
357 358
					throw new ReadException(e.getMessage(), e);
358 359
				}
359 360
			}
......
448 449
					if (!isPrinting) {
449 450
						this.setVisible(false);
450 451
					}
451
					throw new LoadLayerException(getName(), e);
452
					throw new LoadLayerException(e.getMessage(), e);
452 453
				}
453 454
			}
454 455
		}
org.gvsig.raster.wms/trunk/org.gvsig.raster.wms/org.gvsig.raster.wms.io/src/main/java/org/gvsig/raster/wms/io/WMSProvider.java
85 85
 *
86 86
 * @author Nacho Brodin (nachobrodin@gmail.com)
87 87
 */
88
@SuppressWarnings("deprecation")
88 89
public class WMSProvider extends DefaultRasterProvider implements RemoteRasterProvider {
89 90
	public static String                NAME                     = "Wms Store";
90 91
	public static String                DESCRIPTION              = "Wms Raster file";

Also available in: Unified diff