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

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