Files
d20-srd-spell-lists/d20 SRD Spell Lists/Exceptions/NoCharacterFileException.cs

14 lines
294 B
C#

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) {
}
}
}