Strukturanalyse im Parser ist komplett, Daten müssen nur noch gemapped werden
This commit is contained in:
16
src/ParsingException.cs
Normal file
16
src/ParsingException.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace WorldOfPeacecraft
|
||||
{
|
||||
public class ParsingException : Exception
|
||||
{
|
||||
public ParsingException () : base();
|
||||
|
||||
public ParsingException (string message) : base(message);
|
||||
|
||||
public ParsingException (SerializationInfo info, StreamingContext context) : base(info, context);
|
||||
|
||||
public ParsingException (string message, Exception innerException) : base(message, innerException);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user