Files
RobustToolbox/Robust.Shared/SandboxArgumentException.cs
Pieter-Jan Briers a41f64f30e sandboxing (#1408)
2020-11-26 23:37:31 +01:00

28 lines
600 B
C#

using System;
using System.Runtime.Serialization;
namespace Robust.Shared
{
[Serializable]
public class SandboxArgumentException : Exception
{
public SandboxArgumentException()
{
}
public SandboxArgumentException(string message) : base(message)
{
}
public SandboxArgumentException(string message, Exception inner) : base(message, inner)
{
}
protected SandboxArgumentException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}