home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 August / GSSH0804.iso / Action / Parsec47 / Parsec47.exe / p47 / src / abagames / util / sdl / SDLInitFailedException.d < prev    next >
Text File  |  2003-11-29  |  333b  |  16 lines

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