openesb-components/ojc-core/httpsoapbc/httpsoapbcimpl/src/main/java/com/sun/jbi/httpsoapbc/FaultException.java

83 lines
2.1 KiB
Java
Executable File

/*
* BEGIN_HEADER - DO NOT EDIT
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://open-jbi-components.dev.java.net/public/CDDLv1.0.html.
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* HEADER in each file and include the License file at
* https://open-jbi-components.dev.java.net/public/CDDLv1.0.html.
* If applicable add the following below this CDDL HEADER,
* with the fields enclosed by brackets "[]" replaced with
* your own identifying information: Portions Copyright
* [year] [name of copyright owner]
*/
/*
* @(#)FaultException.java
*
* Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
*
* END_HEADER - DO NOT EDIT
*/
package com.sun.jbi.httpsoapbc;
import javax.jbi.messaging.MessagingException;
/**
* Contains the information to reply with an HTTP error
*/
public class FaultException extends Exception{
public final static String FAULT_CODE_SERVER = "Server"; // NOI18N
public final static String FAULT_CODE_CLIENT = "Client"; // NOI18N
String mFaultCode;
String mFaultString;
String mFaultActor;
String mDetail;
/** Creates a new instance of HttpException */
public FaultException() {
super();
}
public FaultException(MessagingException ex) {
super(ex);
// default
mFaultCode = FAULT_CODE_SERVER;
mFaultString = ex.getMessage();
//mFaultActor;
mDetail = ex.getMessage();
}
public FaultException(String faultCode, String msg) {
mFaultCode = faultCode;
mFaultString = msg;
}
public String getFaultCode() {
return mFaultCode;
}
public String getFaultString() {
return mFaultString;
}
public String getFaultActor() {
return mFaultActor;
}
public String getDetail() {
return mDetail;
}
}