Files
RScript/PublicTypes/RScriptException.cs

12 lines
376 B
C#
Raw Normal View History

2025-10-13 19:39:36 +08:00
using System;
namespace Convention.RScript
{
[Serializable]
public class RScriptException : Exception
{
public RScriptException(string message, int runtimePointer) : base($"when running {runtimePointer}, {message}") { }
public RScriptException(string message, int runtimePointer, Exception inner) : base($"when running {runtimePointer}, {message}", inner) { }
}
}