Upgraded tristanable

This commit is contained in:
Tristan B. Velloza Kildaire 2022-05-10 15:24:42 +02:00
parent 16ae65937a
commit e64827b770
3 changed files with 10 additions and 2 deletions

View File

@ -6,7 +6,7 @@
"dependencies": {
"bformat": "~>3.1.3",
"eventy": "0.2.2",
"tristanable": "2.3.14"
"tristanable": "2.6.1"
},
"description": "Tagged network-message task engine",
"license": "LGPL v3",

View File

@ -3,6 +3,6 @@
"versions": {
"bformat": "3.1.3",
"eventy": "0.2.2",
"tristanable": "2.3.14"
"tristanable": "2.6.1"
}
}

View File

@ -14,3 +14,11 @@ public abstract class TaskyException : Exception
super("TaskyException:"~msg);
}
}
public final class SubmissionException : TaskyException
{
this(string msg)
{
super("SubmissionException: "~msg);
}
}