All checks were successful
Gitea Actions Demo / Scan the project (push) Successful in 21s
15 lines
454 B
C#
15 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nebulix.Rendering;
|
|
|
|
|
|
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) { }
|
|
} |