view base/src/java/util/MissingResourceException.d @ 116:3daece18b48e

java.nonstandard.locale should be java.nonstandard.Locale.
author Jacob Carlborg <doob@me.com>
date Sun, 17 Apr 2011 17:05:26 +0200
parents 1bf55a6eb092
children
line wrap: on
line source

module java.util.MissingResourceException;

import java.lang.all;

class MissingResourceException : Exception {
    String classname;
    String key;
    this( String msg, String classname, String key ){
        super(msg);
        this.classname = classname;
        this.key = key;
    }
}