You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tlang/source/tlang/misc/exceptions.d

17 lines
403 B
D

module tlang.misc.exceptions;
//import gogga : generateMessage;
public class TError : Exception
{
this(string message)
{
/* Generate eerror message using gogga */
//byte[] messageBytes = generateMessage(message, DebugType.ERROR);
/* TODO: Check the vnode for path of fd 0, dont vt100 is not tty device */
//super(messageBytes);
super(message);
}
}