25 lines
464 B
C#
25 lines
464 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|