1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 18:23:32 +02:00
birchwood/source/birchwood/client/exceptions.d
Tristan B. Velloza Kildaire b5e1b4065f Client
- Added TODOs

Exceptions

- Added TODO
2023-03-09 15:40:20 +02:00

41 lines
859 B
D

module birchwood.client.exceptions;
import std.conv : to;
public class BirchwoodException : Exception
{
// TODO: Move outside one level
public enum ErrorType
{
INVALID_CONN_INFO,
ALREADY_CONNECTED,
CONNECT_ERROR,
EMPTY_PARAMS,
INVALID_CHANNEL_NAME,
INVALID_NICK_NAME,
ILLEGAL_CHARACTERS
}
private ErrorType errType;
/* Auxillary error information */
/* TODO: Make these actually Object */
private string auxInfo;
this(ErrorType errType)
{
super("BirchwoodError("~to!(string)(errType)~")"~(auxInfo.length == 0 ? "" : " "~auxInfo));
this.errType = errType;
}
this(ErrorType errType, string auxInfo)
{
this(errType);
this.auxInfo = auxInfo;
}
public ErrorType getType()
{
return errType;
}
}