mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
23 lines
453 B
C#
23 lines
453 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Robust.Shared
|
|
{
|
|
[Serializable]
|
|
[Virtual]
|
|
public class SandboxArgumentException : Exception
|
|
{
|
|
public SandboxArgumentException()
|
|
{
|
|
}
|
|
|
|
public SandboxArgumentException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public SandboxArgumentException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
}
|