-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dotnet-sdk): add LH business exception in Task Worker
- Loading branch information
1 parent
f4abe43
commit 39eeea6
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using LittleHorse.Common.Proto; | ||
|
||
namespace LittleHorse.Sdk.Exceptions; | ||
|
||
public class LHTaskException: Exception | ||
{ | ||
private String name; | ||
private VariableValue content; | ||
|
||
public LHTaskException(String name, String message): base(message) | ||
{ | ||
this.name = name; | ||
this.content = null; | ||
} | ||
|
||
public LHTaskException(String name, String message, VariableValue content): base(message) | ||
{ | ||
this.name = name; | ||
this.content = content; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters