From 0d850d05089d4088aea19d8d63167db9368549a1 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Tue, 24 May 2022 19:40:45 +0200 Subject: [PATCH] Fixed compilation error by adding an implementation for the DescriptorException used in jobs.d --- source/tasky/exceptions.d | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/tasky/exceptions.d b/source/tasky/exceptions.d index 9f9c5d3..d901885 100644 --- a/source/tasky/exceptions.d +++ b/source/tasky/exceptions.d @@ -23,6 +23,14 @@ public final class SubmissionException : TaskyException } } +public final class DescriptorException : TaskyException +{ + this(string msg) + { + super("DescriptorException: "~msg); + } +} + /** * Raised if the underlying socket dies (connection closes) * or (TODO: check that Tasky shutdown does not cause this to weirdly go off by calling tmanager.shutdown())