public void testReMarshalException()
{
Any any = orb.create_any();
final String string = "bla bla bla";
DIIException ex = new DIIException(string);
DIIExceptionHelper.insert(any, ex);
DIIException ex2 = DIIExceptionHelper.extract(any);
assertEquals(string, ex2.why);
}