phobos/std/outofmemory.d
2007-09-10 04:38:59 +00:00

25 lines
321 B
D

module std.outofmemory;
class OutOfMemoryException : Exception
{
static char[] s = "Out of memory";
this()
{
super(s);
}
char[] toString()
{
return s;
}
}
extern (C) void _d_OutOfMemory()
{
throw cast(OutOfMemoryException)
cast(void *)
OutOfMemoryException.classinfo.init;
}