Basic spell list and character model functionality tested? Maybe.

Signed-off-by: Melissa Avery-Weir <averymd@irrsinn.net>
This commit is contained in:
2011-09-15 00:48:59 -04:00
parent 98dd383875
commit 4b31f5a561
63 changed files with 355067 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace d20_SRD_Spell_Lists.Exceptions {
public class NoCharacterFileException : Exception {
public NoCharacterFileException(string message)
: base(message) {
}
}
}