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 >
Text File  |  2004-04-03  |  313b  |  16 lines

  1. /*
  2.  * $Id: sdlexception.d,v 1.1.1.1 2004/04/03 10:36:32 kenta Exp $
  3.  *
  4.  * Copyright 2003 Kenta Cho. All rights reserved.
  5.  */
  6. module abagames.util.sdl.sdlexception;
  7.  
  8. /**
  9.  * SDL initialize failed.
  10.  */
  11. public class SDLInitFailedException: Exception {
  12.   public this(char[] msg) {
  13.     super(msg);
  14.   }
  15. }
  16.