comparison 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
comparison
equal deleted inserted replaced
97:c86eb8b3098e 98:48d4ee626868
1 module java.beans.IntrospectionException;
2 import java.lang.all;
3
4 class IntrospectionException : Exception {
5 this(String mess){
6 super(mess);
7 }
8 }
9