Files
RobustToolbox/Robust.Shared/ContentPack/TypeCheckFailedException.cs
Pieter-Jan Briers 816a535a92 Fix obsoletion warnings for BinaryFormatter stuff
This became an outright warning in .NET 8. Into the trash, never used it.
2023-12-15 19:37:13 +01:00

23 lines
465 B
C#

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