12 lines
376 B
C#
12 lines
376 B
C#
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) { }
|
|
}
|
|
}
|