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 256 B

12345678910111213141516171819
  1. using System;
  2. namespace LLama.Exceptions
  3. {
  4. public class RuntimeError
  5. : Exception
  6. {
  7. public RuntimeError()
  8. {
  9. }
  10. public RuntimeError(string message)
  11. : base(message)
  12. {
  13. }
  14. }
  15. }