File: SDLInitFailedException.d

package info (click to toggle)
parsec47 0.2.dfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,168 kB
  • ctags: 12
  • sloc: xml: 2,178; ansic: 47; makefile: 28
file content (15 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * $Id: SDLInitFailedException.d,v 1.1.1.1 2003/11/28 17:26:30 kenta Exp $
 *
 * Copyright 2003 Kenta Cho. All rights reserved.
 */
module abagames.util.sdl.SDLInitFailedException;

/**
 * SDL initialize failed.
 */
public class SDLInitFailedException: Exception {
  public this(string msg) {
    super(msg);
  }
}