diff --git a/source/tasky/exceptions.d b/source/tasky/exceptions.d new file mode 100644 index 0000000..2e813d3 --- /dev/null +++ b/source/tasky/exceptions.d @@ -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); + } +}