You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

RuntimeError.cs 416 B

1234567891011121314151617181920
  1. using System;
  2. namespace LLama.Exceptions;
  3. /// <summary>
  4. /// Base class for LLamaSharp runtime errors (i.e. errors produced by llama.cpp, converted into exceptions)
  5. /// </summary>
  6. public class RuntimeError
  7. : Exception
  8. {
  9. /// <summary>
  10. /// Create a new RuntimeError
  11. /// </summary>
  12. /// <param name="message"></param>
  13. public RuntimeError(string message)
  14. : base(message)
  15. {
  16. }
  17. }