20 lines
523 B
C#
20 lines
523 B
C#
using EDPlayerJournal;
|
|
using EDPlayerJournal.Entries;
|
|
|
|
namespace EDPlayerJournal.CommanderContext;
|
|
|
|
public class CommanderParserException : ApplicationException {
|
|
public CommanderParserException() {
|
|
}
|
|
|
|
public CommanderParserException(string message) : base(message) {
|
|
}
|
|
|
|
public CommanderParserException(string message, params object?[] args) : base(string.Format(message, args)) {
|
|
}
|
|
}
|
|
|
|
internal interface ICommanderParser {
|
|
void Parse(Entry entry, CommanderContext ctx);
|
|
}
|