Added base exception type

This commit is contained in:
Tristan B. Velloza Kildaire 2022-01-12 17:28:08 +02:00
parent 90044e8ff5
commit 45acf418ca
1 changed files with 16 additions and 0 deletions

16
source/tasky/exceptions.d Normal file
View File

@ -0,0 +1,16 @@
/**
* Exceptions
*
* Base definitions for exceptions appear here
*/
module tasky.exceptions;
import std.exception;
public abstract class TaskyException : Exception
{
this(string msg)
{
super("TaskyException:"~msg);
}
}