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