11 lines
172 B
C#
11 lines
172 B
C#
using System;
|
|
|
|
namespace Decal.Adapter;
|
|
|
|
internal class RenderViolationException : Exception
|
|
{
|
|
internal RenderViolationException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|