tasky/source/tasky/exceptions.d

17 lines
226 B
D
Raw Normal View History

2022-01-12 15:28:08 +00:00
/**
* Exceptions
*
* Base definitions for exceptions appear here
*/
module tasky.exceptions;
import std.exception;
public abstract class TaskyException : Exception
{
this(string msg)
{
super("TaskyException:"~msg);
}
}