ExceptionDoc

- Added `getException()`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-20 21:28:06 +02:00
parent 48f9b2659f
commit d876eab69d
1 changed files with 5 additions and 0 deletions

View File

@ -87,6 +87,11 @@ public struct ExceptionDoc
private string exception;
private string description;
public string getException()
{
return this.exception;
}
public string getDescription()
{
return this.description;