Index: modules/beans/src/main/java/java/beans/IntrospectionException.java =================================================================== --- modules/beans/src/main/java/java/beans/IntrospectionException.java.orig 2006-03-21 07:48:18.000000000 +0000 +++ modules/beans/src/main/java/java/beans/IntrospectionException.java 2006-03-22 17:30:42.000000000 +0000 @@ -27,12 +27,10 @@ public class IntrospectionException extends Exception { - String message; - /** * @com.intel.drl.spec_ref */ public IntrospectionException(String message) { - this.message = message; + super(message); } } Index: modules/beans/src/test/java/org/apache/harmony/tests/beans/IntrospectionExceptionTest.java =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ modules/beans/src/test/java/org/apache/harmony/tests/beans/IntrospectionExceptionTest.java 2006-03-22 18:11:29.000000000 +0000 @@ -0,0 +1,29 @@ +/* + * Copyright 2006 The Apache Software Foundation or its licensors, as applicable. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.harmony.tests.beans; + +import junit.framework.TestCase; +import java.beans.IntrospectionException; + +public class IntrospectionExceptionTest extends TestCase { + + public void testIntrospectionExceptionMessage() { + IntrospectionException e = new IntrospectionException("test message"); + assertEquals("test message", e.getMessage()); + } + +}