mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
25 lines
520 B
C#
25 lines
520 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Robust.Client.Graphics.Clyde
|
|
{
|
|
[Serializable]
|
|
[PublicAPI]
|
|
[Virtual]
|
|
internal class ShaderCompilationException : Exception
|
|
{
|
|
public ShaderCompilationException()
|
|
{
|
|
}
|
|
|
|
public ShaderCompilationException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public ShaderCompilationException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
}
|