Fixed compilation error by adding an implementation

for the DescriptorException used in jobs.d
This commit is contained in:
Tristan B. Velloza Kildaire 2022-05-24 19:40:45 +02:00
parent a7c18d5e10
commit 0d850d0508
1 changed files with 8 additions and 0 deletions

View File

@ -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())