mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
9 lines
226 B
C#
9 lines
226 B
C#
using System;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Exceptions;
|
|
|
|
public sealed class CopyToFailedException<T> : Exception
|
|
{
|
|
public override string Message => $"Failed performing CopyTo for Type {typeof(T)}";
|
|
}
|