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.

llama.exceptions.runtimeerror.md 2.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # RuntimeError
  2. Namespace: LLama.Exceptions
  3. ```csharp
  4. public class RuntimeError : System.Exception, System.Runtime.Serialization.ISerializable
  5. ```
  6. Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [Exception](https://docs.microsoft.com/en-us/dotnet/api/system.exception) → [RuntimeError](./llama.exceptions.runtimeerror.md)<br>
  7. Implements [ISerializable](https://docs.microsoft.com/en-us/dotnet/api/system.runtime.serialization.iserializable)
  8. ## Properties
  9. ### **TargetSite**
  10. ```csharp
  11. public MethodBase TargetSite { get; }
  12. ```
  13. #### Property Value
  14. [MethodBase](https://docs.microsoft.com/en-us/dotnet/api/system.reflection.methodbase)<br>
  15. ### **Message**
  16. ```csharp
  17. public string Message { get; }
  18. ```
  19. #### Property Value
  20. [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  21. ### **Data**
  22. ```csharp
  23. public IDictionary Data { get; }
  24. ```
  25. #### Property Value
  26. [IDictionary](https://docs.microsoft.com/en-us/dotnet/api/system.collections.idictionary)<br>
  27. ### **InnerException**
  28. ```csharp
  29. public Exception InnerException { get; }
  30. ```
  31. #### Property Value
  32. [Exception](https://docs.microsoft.com/en-us/dotnet/api/system.exception)<br>
  33. ### **HelpLink**
  34. ```csharp
  35. public string HelpLink { get; set; }
  36. ```
  37. #### Property Value
  38. [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  39. ### **Source**
  40. ```csharp
  41. public string Source { get; set; }
  42. ```
  43. #### Property Value
  44. [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  45. ### **HResult**
  46. ```csharp
  47. public int HResult { get; set; }
  48. ```
  49. #### Property Value
  50. [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
  51. ### **StackTrace**
  52. ```csharp
  53. public string StackTrace { get; }
  54. ```
  55. #### Property Value
  56. [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  57. ## Constructors
  58. ### **RuntimeError()**
  59. ```csharp
  60. public RuntimeError()
  61. ```
  62. ### **RuntimeError(String)**
  63. ```csharp
  64. public RuntimeError(string message)
  65. ```
  66. #### Parameters
  67. `message` [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>