Revision 23754 branches/v2_0_0_prep/libraries/libFMap_dataFile/src/org/gvsig/fmap/data/feature/file/dgn/DGNResource.java

View differences:

DGNResource.java
35 35
import java.util.HashMap;
36 36
import java.util.Map;
37 37

  
38
import org.gvsig.fmap.data.DataException;
39
import org.gvsig.fmap.data.OpenException;
40
import org.gvsig.fmap.data.ReadException;
38
import org.gvsig.fmap.data.exceptions.DataException;
39
import org.gvsig.fmap.data.exceptions.OpenException;
40
import org.gvsig.fmap.data.exceptions.ReadException;
41 41
import org.gvsig.fmap.data.feature.Feature;
42 42
import org.gvsig.fmap.data.feature.FeatureType;
43
import org.gvsig.fmap.data.feature.IsNotFeatureSettingException;
43
import org.gvsig.fmap.data.feature.exceptions.IsNotFeatureSettingException;
44 44
import org.gvsig.fmap.data.feature.file.FileMemoryResource;
45 45
import org.gvsig.fmap.data.feature.file.FileStoreParameters;
46 46
import org.gvsig.fmap.data.feature.file.dgn.utils.DGNElemArc;
......
109 109
		try {
110 110
			m_DgnReader = new DGNReader(this.getFile().getAbsolutePath());
111 111
		} catch (ReadException e) {
112
			throw new OpenException(this.description(),e);
112
			throw new OpenException(this.getDescription(),e);
113 113
		}
114 114
		if (legendLabelingManagerFactory != null) {
115 115
			legendlabelingManager = legendLabelingManagerFactory.newManager();
......
603 603
			complexFeature.stopLoading();
604 604

  
605 605
		}catch (IsNotFeatureSettingException e) {
606
			throw new OpenException(this.description(),e);
606
			throw new OpenException(this.getDescription(),e);
607 607
		} catch (ReadException e) {
608
			throw new OpenException(this.description(),e);
608
			throw new OpenException(this.getDescription(),e);
609 609
		}
610 610

  
611 611
		if (legendlabelingManager != null) {

Also available in: Unified diff