Mercurial > repos > snowblizz-super-API-ideas
comparison api/Factories/RequiredDataMissingException.cs @ 112:863518044d38
Re #54: Add Army support to WarFoundryFactory
* Stop "custom equipment" node being mandatory
* Remove unused "ratio" definition
* Change "integer or ratio" definition to "integer or percentage"
* Use "integer or percentage" definition in army XSD
* Add exception to say that required objects were missing (Game System and Race)
* Throw exceptions on creating army if game system or race is missing
Re #53: Add saving of Army to XML file
* Add namespace attributes to XML root node
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 22 Aug 2009 18:18:20 +0000 |
parents | |
children | df61d26c23fb |
comparison
equal
deleted
inserted
replaced
111:b5ae022ce7b8 | 112:863518044d38 |
---|---|
1 // This file (RequiredDataMissingException.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard | |
2 // | |
3 // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. | |
4 | |
5 using System; | |
6 | |
7 namespace IBBoard.WarFoundry.API | |
8 { | |
9 /// <summary> | |
10 /// An exception that is thrown when a file cannot be loaded because one of the data files that it depends on has | |
11 /// not been loaded. Normally occurs when loading an army file without having the correct game system or race. | |
12 /// </summary> | |
13 public class RequiredDataMissingException : Exception | |
14 { | |
15 public RequiredDataMissingException(String file, String missingAttribute, String requiredValue) : base(String.Format("Could not find object with ID {2} for {1} of {0}", file, missingAttribute, requiredValue)) | |
16 { | |
17 } | |
18 } | |
19 } |