view base/src/java/beans/IntrospectionException.d @ 112:9f4c18c268b2

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

module java.beans.IntrospectionException;
import java.lang.all;

class IntrospectionException : Exception {
    this(String mess){
        super(mess);
    }
}