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 >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2004-04-03
|
313 b
|
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);
}
}