home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar Special 2004 August
/
GSSH0804.iso
/
Action
/
TumikiFighters
/
tf0_2.exe
/
tf
/
src
/
abagames
/
util
/
sdl
/
sdlexception.d
< prev
next >
Wrap
Text File
|
2004-04-03
|
313b
|
16 lines
/*
* $Id: sdlexception.d,v 1.1.1.1 2004/04/03 10:36:32 kenta Exp $
*
* Copyright 2003 Kenta Cho. All rights reserved.
*/
module abagames.util.sdl.sdlexception;
/**
* SDL initialize failed.
*/
public class SDLInitFailedException: Exception {
public this(char[] msg) {
super(msg);
}
}