From e64827b7709b293ca3fa77e3b90df121a4291ac5 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Tue, 10 May 2022 15:24:42 +0200 Subject: [PATCH] Upgraded tristanable --- dub.json | 2 +- dub.selections.json | 2 +- source/tasky/exceptions.d | 8 ++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index 00c4310..2230fa5 100644 --- a/dub.json +++ b/dub.json @@ -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", diff --git a/dub.selections.json b/dub.selections.json index 4cfc17f..0b1dc22 100644 --- a/dub.selections.json +++ b/dub.selections.json @@ -3,6 +3,6 @@ "versions": { "bformat": "3.1.3", "eventy": "0.2.2", - "tristanable": "2.3.14" + "tristanable": "2.6.1" } } diff --git a/source/tasky/exceptions.d b/source/tasky/exceptions.d index 2e813d3..85dafe5 100644 --- a/source/tasky/exceptions.d +++ b/source/tasky/exceptions.d @@ -14,3 +14,11 @@ public abstract class TaskyException : Exception super("TaskyException:"~msg); } } + +public final class SubmissionException : TaskyException +{ + this(string msg) + { + super("SubmissionException: "~msg); + } +} \ No newline at end of file