Files
RobustToolbox/Robust.Client/GameObjects/ComponentStateApplyException.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
478 B
C#

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