Updated structure and took first steps for a better architecture
Some checks failed
Gitea Actions Demo / Scan the project (push) Failing after 5s
Some checks failed
Gitea Actions Demo / Scan the project (push) Failing after 5s
This commit is contained in:
19
Nebulix/Rendering/Shaders/ShaderLinkException.cs
Normal file
19
Nebulix/Rendering/Shaders/ShaderLinkException.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Nebulix.Rendering;
|
||||
|
||||
|
||||
[Serializable]
|
||||
public class ShaderLinkException : Exception
|
||||
{
|
||||
public ShaderLinkException() : base("Error occured while trying to link a shader.") { }
|
||||
public ShaderLinkException(string message) : base(message) { }
|
||||
public ShaderLinkException(string message, Exception inner) : base(message, inner) { }
|
||||
protected ShaderLinkException(
|
||||
System.Runtime.Serialization.SerializationInfo info,
|
||||
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
||||
}
|
Reference in New Issue
Block a user