view mde/input/exception.d @ 4:9a990644948c

Many changes: upgraded to tango 0.99.4, reorganised mde/input, large changes to mde/mergetag and mde/init, separated off test/MTTest.d and more. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Sun, 06 Jan 2008 17:38:51 +0000
parents
children b544c3a7c9ca
line wrap: on
line source

module mde.input.exception;

import mde.exception;

/// Base Input exception class.
class InputException : mdeException {
    const override symbol = super.symbol ~ ".input.input.Input";
    this (char[] msg) {
        super(msg);
    }
    this () {}
}

class ConfigLoadException : InputException {
    this () {}
}