Revision 21698

View differences:

trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/overviews/OverviewsProcess.java
81 81
		} catch (BuildingOverviewsException e) {
82 82
			if (incrementableTask != null)
83 83
				incrementableTask.hideWindow();
84
			RasterToolsUtil.messageBoxError("error_create_overviews", this);
84
			RasterToolsUtil.messageBoxError("error_create_overviews", this, e);
85 85
		} catch (WritingException e) {
86 86
			if (incrementableTask != null)
87 87
				incrementableTask.hideWindow();
88
			RasterToolsUtil.messageBoxError("error_write_overviews", this);
88
			RasterToolsUtil.messageBoxError("error_write_overviews", this, e);
89 89
		}
90 90
	}
91 91

  
trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/properties/control/TranspByPixelListener.java
161 161
			if (theView == null)
162 162
				return;
163 163
		} catch (ClassCastException ex) {
164
			RasterToolsUtil.messageBoxError("error_view_not_found", null, ex);
164
			RasterToolsUtil.messageBoxError("error_view_not_found", this, ex);
165 165
			return;
166 166
		}
167 167
		MapControl m_MapControl = theView.getMapControl();
trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/properties/control/BandSelectorListener.java
287 287
			try {
288 288
				bandSetupPanel.addFiles(ds);
289 289
			} catch (NotInitializeException e) {
290
				RasterToolsUtil.messageBoxError("table_not_initialize", this);
290
				RasterToolsUtil.messageBoxError("table_not_initialize", this, e);
291 291
			}
292 292
		}
293 293
	}
trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/properties/panels/BandSelectorPanel.java
477 477
				}	
478 478
			}
479 479
		} catch (NotInitializeException e) {
480
			RasterToolsUtil.messageBoxError("table_not_initialize", this);
480
			RasterToolsUtil.messageBoxError("table_not_initialize", this, e);
481 481
		}
482 482
		return DatasetColorInterpretation.UNDEF_BAND;
483 483
	}
trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/reproject/ReprojectProcess.java
74 74
		} catch (ReprojectException e) {
75 75
			if (incrementableTask != null)
76 76
				incrementableTask.processFinalize();
77
			RasterToolsUtil.messageBoxError("error_reprojecting", null, e);
77
			RasterToolsUtil.messageBoxError("error_reprojecting", this, e);
78 78
		}
79 79
	}
80 80

  

Also available in: Unified diff