Revision 1594
Added by Jing Tao over 21 years ago
src/edu/ucsb/nceas/metacat/DBSAXHandler.java | ||
---|---|---|
195 | 195 |
catch (Exception e) |
196 | 196 |
{ |
197 | 197 |
MetaCatUtil.debugMessage |
198 |
("Failed to write triples into relation table", 30); |
|
199 |
throw new SAXException("Failed to write triples into relation table"); |
|
198 |
("Failed to write triples into relation table" + |
|
199 |
e.getMessage(), 30); |
|
200 |
throw new SAXException("Failed to write triples into relation table + e.getMessage()"); |
|
200 | 201 |
} |
201 | 202 |
} |
202 | 203 |
|
Also available in: Unified diff
Add debugMessage.