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.grammarformatexception.md 1.9 kB

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