mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
28 lines
612 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|