Added exception class

This commit is contained in:
Tristan B. Velloza Kildaire 2021-09-26 10:36:22 +02:00
parent 1375f1acf8
commit 6365d304c1
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
module libdnet.api.exceptions;
import libdnet.api.client : Client;
public class DNetException : Exception
{
private Client client;
this(string message)
{
super(message);
// this.client = client;
}
}