using System; namespace LLama.Exceptions; /// /// Base class for LLamaSharp runtime errors (i.e. errors produced by llama.cpp, converted into exceptions) /// public class RuntimeError : Exception { /// /// Create a new RuntimeError /// /// public RuntimeError(string message) : base(message) { } }