Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6C0FF9EA0 for ; Fri, 6 Apr 2012 18:47:11 +0000 (UTC) Received: (qmail 30569 invoked by uid 500); 6 Apr 2012 18:47:11 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 30516 invoked by uid 500); 6 Apr 2012 18:47:11 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 30508 invoked by uid 99); 6 Apr 2012 18:47:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Apr 2012 18:47:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Apr 2012 18:47:10 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 280C4238890B; Fri, 6 Apr 2012 18:46:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1310543 - /cxf/branches/2.3.x-fixes/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/SoapFault.java Date: Fri, 06 Apr 2012 18:46:50 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120406184650.280C4238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Fri Apr 6 18:46:49 2012 New Revision: 1310543 URL: http://svn.apache.org/viewvc?rev=1310543&view=rev Log: Fix compile failure Modified: cxf/branches/2.3.x-fixes/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/SoapFault.java Modified: cxf/branches/2.3.x-fixes/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/SoapFault.java URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/SoapFault.java?rev=1310543&r1=1310542&r2=1310543&view=diff ============================================================================== --- cxf/branches/2.3.x-fixes/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/SoapFault.java (original) +++ cxf/branches/2.3.x-fixes/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/SoapFault.java Fri Apr 6 18:46:49 2012 @@ -62,6 +62,15 @@ public class SoapFault extends Fault { public SoapFault(String message, QName faultCode) { super(new Message(message, (ResourceBundle)null), faultCode); } + public SoapFault(String message, ResourceBundle bundle, QName faultCode) { + super(new Message(message, bundle), faultCode); + } + public SoapFault(String message, ResourceBundle bundle, Throwable t, QName faultCode) { + super(new Message(message, bundle), t, faultCode); + } + public SoapFault(String message, ResourceBundle bundle, QName faultCode, Object ... params) { + super(new Message(message, bundle, params), faultCode); + } public SoapFault(String message, Throwable t, QName faultCode) { super(new Message(message, (ResourceBundle)null), t, faultCode);