~tritone-team/tritone/eucalyptus

« back to all changes in this revision

Viewing changes to clc/modules/wsstack/src/main/java/com/eucalyptus/ws/util/ReplyQueue.java

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2009-12-01 21:09:28 UTC
  • mto: This revision was merged to the branch mainline in revision 75.
  • Revision ID: james.westby@ubuntu.com-20091201210928-o2dvg0ubljhb0ft6
Tags: upstream-1.6.1~bzr1083
ImportĀ upstreamĀ versionĀ 1.6.1~bzr1083

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
    }
150
150
    if ( errMsg == null ) {
151
151
      ByteArrayOutputStream exStream = new ByteArrayOutputStream( );
152
 
      exception.printStackTrace( new PrintStream( exStream ) );
 
152
      if(exception != null)
 
153
          exception.printStackTrace( new PrintStream( exStream ) );
153
154
      errMsg = new EucalyptusErrorMessageType( exMsg.getComponentName( ), msg, "Internal Error: \n" + exStream.toString( ) );
154
155
    }
155
156
    return errMsg;