Getter für Block, Compilefehler entfernt
This commit is contained in:
@@ -5,12 +5,20 @@ namespace WorldOfPeacecraft
|
||||
{
|
||||
public class ParsingException : Exception
|
||||
{
|
||||
public ParsingException () : base();
|
||||
public ParsingException () : base()
|
||||
{
|
||||
}
|
||||
|
||||
public ParsingException (string message) : base(message);
|
||||
public ParsingException (string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public ParsingException (SerializationInfo info, StreamingContext context) : base(info, context);
|
||||
public ParsingException (SerializationInfo info, StreamingContext context) : base(info, context)
|
||||
{
|
||||
}
|
||||
|
||||
public ParsingException (string message, Exception innerException) : base(message, innerException);
|
||||
public ParsingException (string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user