00001 /* 00002 * Copyright 2005-2009 WSO2, Inc. http://wso2.com 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 #ifndef WSFAULT_H 00018 #define WSFAULT_H 00019 00020 #include <WSFDefines.h> 00021 #include <WSFException.h> 00022 00030 namespace wso2wsf 00031 { 00043 class WSFault: public Exception 00044 { 00045 00046 private: 00050 std::string _detail; 00051 00055 std::string _role; 00056 00060 void init(); 00061 00062 public: 00067 WSF_EXTERN WSF_CALL WSFault(char const * reason); 00068 00074 WSF_EXTERN WSF_CALL WSFault(char const* reason, char const *detail); 00075 00082 WSF_EXTERN WSF_CALL WSFault(char const *reason, char const *detail, char const* code); 00083 00092 WSF_EXTERN WSF_CALL WSFault(char const *reason, char const *detail, char const* code, char const *role); 00093 00097 WSF_EXTERN std::string WSF_CALL getFaultDetail(); 00098 00102 WSF_EXTERN std::string WSF_CALL getFaultRole(); 00103 00108 WSF_EXTERN void WSF_CALL setFaultDetail(char const* detail); 00113 WSF_EXTERN void WSF_CALL setFaultRole(char const* role); 00117 WSF_EXTERN void WSF_CALL process() const; 00118 }; 00120 } 00121 #endif // WSFAULT_H