mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
31 lines
683 B
C#
31 lines
683 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)
|
|
{
|
|
}
|
|
|
|
protected ShaderCompilationException(
|
|
SerializationInfo info,
|
|
StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|