Files
RobustToolbox/Robust.Shared/ContentPack/TypeCheckFailedException.cs
Pieter-Jan Briers a41f64f30e sandboxing (#1408)
2020-11-26 23:37:31 +01:00

28 lines
612 B
C#

using System;
using System.Runtime.Serialization;
namespace Robust.Shared.ContentPack
{
[Serializable]
public class TypeCheckFailedException : Exception
{
public TypeCheckFailedException()
{
}
public TypeCheckFailedException(string message) : base(message)
{
}
public TypeCheckFailedException(string message, Exception inner) : base(message, inner)
{
}
protected TypeCheckFailedException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}