Revision 10665 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/edition/ShpSchemaManager.java

View differences:

ShpSchemaManager.java
45 45
 *
46 46
 * $Id$
47 47
 * $Log$
48
 * Revision 1.10  2007-03-06 17:08:55  caballero
48
 * Revision 1.11  2007-03-08 12:15:18  caballero
49 49
 * Exceptions
50 50
 *
51
 * Revision 1.10  2007/03/06 17:08:55  caballero
52
 * Exceptions
53
 *
51 54
 * Revision 1.9  2006/06/29 07:33:56  fjp
52 55
 * Cambios ISchemaManager y IFieldManager por terminar
53 56
 *
......
81 84

  
82 85
import java.io.File;
83 86

  
87
import com.hardcode.driverManager.DriverLoadException;
84 88
import com.hardcode.gdbms.driver.exceptions.InitializeWriterException;
85 89
import com.hardcode.gdbms.driver.exceptions.SchemaEditionException;
86 90
import com.iver.cit.gvsig.exceptions.visitors.StartWriterVisitorException;
......
114 118
			shpWriter.initialize(definition);
115 119
			shpWriter.preProcess();
116 120
		} catch (InitializeWriterException e) {
117
			throw new SchemaEditionException("SHP",e);
121
			throw new SchemaEditionException("Shape Writer",e);
118 122
		} catch (StartWriterVisitorException e) {
119
			throw new SchemaEditionException("SHP",e);
123
			throw new SchemaEditionException("Shape Writer",e);
124
		} catch (DriverLoadException e) {
125
			throw new SchemaEditionException("Shape Writer",e);
120 126
		}
121 127
	}
122 128

  

Also available in: Unified diff