aE.nDouble = 111.111;
aE.cChar = 'a';
aE.bBoolean = true;
aE.aString = "hallo";
aE.aAscii = new Ascii( 'a' );
aE.aAsciiString = new AsciiString( "asciistring" );
aM = new Marshal( false, null );
aM.write_exception( aE );
aUM = new Unmarshal( aM.getByteArray(), aM.getSize(), false, null );
ExceptionTest aE2 = (ExceptionTest)aUM.read_exception( ExceptionTest.class );