File: sdlexception.d

package info (click to toggle)
val-and-rick 0.1a.dfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,132 kB
  • ctags: 5
  • sloc: xml: 349; makefile: 27
file content (24 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * $Id: sdlexception.d,v 1.1.1.1 2005/03/13 16:15:04 kenta Exp $
 *
 * Copyright 2004 Kenta Cho. Some rights reserved.
 */
module abagames.util.sdl.sdlexception;

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

/**
 * SDL general exception.
 */
public class SDLException: Exception {
  public this(string msg) {
    super(msg);
  }
}