14 lines
294 B
C#
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) {
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|