view base/src/java/text/ParseException.d @ 112:9f4c18c268b2

Update to compile and execute with dmd 2.052.
author kntroh
date Wed, 16 Mar 2011 21:53:53 +0900
parents 1bf55a6eb092
children
line wrap: on
line source

module java.text.ParseException;

import java.lang.all;

class ParseException : Exception {
    this( String e = null ){
        super(e);
    }
}