1
0
Fork 0
mirror of https://github.com/besterprotocol/besterd synced 2023-12-13 21:00:32 +01:00

Added stub type for base exception types in bester

This commit is contained in:
Tristan B. Kildaire 2020-04-26 21:13:16 +02:00
parent 55ed333088
commit 4dc2762cb5

10
source/base/types.d Normal file
View file

@ -0,0 +1,10 @@
module base.types;
public class BesterException : Exception
{
this()
{
/* TODO: Implement me */
super("");
}
}