| 1274 | | |
|---|
| 1275 | | // Open the collection file |
|---|
| 1276 | | this.collection = new Collection(collection_file); |
|---|
| 1277 | | if (collection.error) { |
|---|
| 1278 | | collection = null; |
|---|
| 1279 | | // Remove lock file |
|---|
| 1280 | | if (lock_file.exists()) { |
|---|
| 1281 | | lock_file.delete(); |
|---|
| 1282 | | } |
|---|
| 1283 | | throw(new Exception(Dictionary.get("CollectionManager.Missing_Config"))); // this error message does not agree with the error |
|---|
| 1284 | | } |
|---|
| 1285 | | |
|---|
| | 1274 | } |
|---|
| | 1275 | |
|---|
| | 1276 | // Open the collection file |
|---|
| | 1277 | this.collection = new Collection(collection_file); |
|---|
| | 1278 | if (collection.error) { |
|---|
| | 1279 | collection = null; |
|---|
| | 1280 | // Remove lock file |
|---|
| | 1281 | if (lock_file.exists()) { |
|---|
| | 1282 | lock_file.delete(); |
|---|
| | 1283 | } |
|---|
| | 1284 | throw(new Exception(Dictionary.get("CollectionManager.Missing_Config"))); // this error message does not agree with the error |
|---|
| | 1285 | } |
|---|
| | 1286 | |
|---|
| | 1287 | if (!Gatherer.isGsdlRemote) { |
|---|