home *** CD-ROM | disk | FTP | other *** search
/ ring.yamanashi.ac.jp/pub/pc/freem/action/ / action.zip / a7xpg0_11.zip / a7xpg / src / abagames / util / sdl / SDLInitFailedException.d < prev    next >
Text File  |  2003-09-20  |  333b  |  16 lines

  1. /*
  2.  * $Id: SDLInitFailedException.d,v 1.1.1.1 2003/09/19 14:55:49 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.