/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @summary it is new version of old test which was
* Test pickling and unpickling an object with derived classes
* and using a read special to serialize the "middle" class,
* which raises NotSerializableException inside writeObject()
* and readObject() methods.
*/
public class CheckForException {
"serialization/deserialization of " +
"complex objects which raise " +
"NotSerializableException inside " +
"writeObject() and readObject() methods.\n");
try {
/* Catch the expected exception and
* complain if it does not occur.
*/
try {
// Two objects of the same class that are used
// in cleanup test below
p.writeObject("test");
p.writeObject("test2");
p.writeObject(npc);
} catch (NotSerializableException e) {
we = e;
}
"should have raised an exception");
throw new Error();
}
p.flush();
/* Catch the expected exception and
* complain if it does not occur.
*/
try {
// Read the two objects, neither has a cleanup method
q.readObject();
q.readObject();
} catch (NotSerializableException e) {
re = e;
}
"should have raised an exception");
throw new Error();
}
} catch (Exception e) {
e.printStackTrace();
throw new Error();
}
}
}
transient int tmp[];
}
tmp = new int[32];
}
}
}
}
throws NotSerializableException
{
throw new NotSerializableException("NoPickleClass");
}
throws NotSerializableException
{
throw new NotSerializableException("NoPickleClass");
}
}
int i = 7;
transient int tmp[];
}
tmp = new int[32];
}
}
}
}