mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
29 lines
626 B
C#
29 lines
626 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)
|
|
{
|
|
}
|
|
|
|
protected TypeCheckFailedException(
|
|
SerializationInfo info,
|
|
StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|