view base/src/java/beans/IntrospectionException.d @ 125:c43718956f21 default tip

Updated the snippets status.
author Jacob Carlborg <doob@me.com>
date Thu, 11 Aug 2011 19:55:14 +0200
parents 48d4ee626868
children
line wrap: on
line source

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

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