view base/src/java/beans/IntrospectionException.d @ 98:48d4ee626868

rm databinding.observable seems to be duplicate, databinding.beans now building
author Frank Benoit <benoit@tionex.de>
date Wed, 22 Apr 2009 07:30:21 +0200
parents
children
line wrap: on
line source

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

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