You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by da...@apache.org on 2004/06/13 13:29:58 UTC

cvs commit: ws-axis/c/include/axis AxisConfigException.h AxisParseException.h AxisEngineException.h AxisWsddException.h AxisSoapException.h AxisTransportException.h

damitha     2004/06/13 04:29:58

  Added:       c/include/axis AxisConfigException.h AxisParseException.h
                        AxisEngineException.h AxisWsddException.h
                        AxisSoapException.h AxisTransportException.h
  Log:
  (null)
  
  Revision  Changes    Path
  1.1                  ws-axis/c/include/axis/AxisConfigException.h
  
  Index: AxisConfigException.h
  ===================================================================
  /*
   *   Copyright 2003-2004 The Apache Software Foundation.
   *
   *   Licensed under the Apache License, Version 2.0 (the "License");
   *   you may not use this file except in compliance with the License.
   *   You may obtain a copy of the License at
   *
   *       http://www.apache.org/licenses/LICENSE-2.0
   *
   *   Unless required by applicable law or agreed to in writing, software
   *   distributed under the License is distributed on an "AS IS" BASIS,
   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *   See the License for the specific language governing permissions and
   *   limitations under the License.
   *
   *
   *   @author Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
   *
   */
   
  #ifndef __AXISCONFIGEXCEPTION_H_OF_AXIS_INCLUDED_
  #define __AXISCONFIGEXCEPTION_H_OF_AXIS_INCLUDED_
  
  #include <string>
  #include <exception>
  #include <axis/server/AxisException.h>
  using namespace std;
  
  class AxisConfigException :public AxisException
  {
  
  public:
      AxisConfigException();
      AxisConfigException(int iExceptionCode);
      AxisConfigException(exception* e);
      AxisConfigException(exception* e, int iExceptionCode);
      virtual ~AxisConfigException() throw();
      const char* what() throw();
      const int getExceptionCode();
      const string getMessage(exception* e);
      const string getMessage(int iExceptionCode);
                                                                                                                               
  private:
      void processException(exception* e);
      void processException(exception* e, int iExceptionCode);
      void processException(int iExceptionCode);
      string m_sMessage;
      int m_iExceptionCode;
  };
  
  #endif
  
  
  
  
  1.1                  ws-axis/c/include/axis/AxisParseException.h
  
  Index: AxisParseException.h
  ===================================================================
  /*
   *   Copyright 2003-2004 The Apache Software Foundation.
   *
   *   Licensed under the Apache License, Version 2.0 (the "License");
   *   you may not use this file except in compliance with the License.
   *   You may obtain a copy of the License at
   *
   *       http://www.apache.org/licenses/LICENSE-2.0
   *
   *   Unless required by applicable law or agreed to in writing, software
   *   distributed under the License is distributed on an "AS IS" BASIS,
   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *   See the License for the specific language governing permissions and
   *   limitations under the License.
   *
   *
   *   @author Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
   *
   */
   
  #ifndef __AXISPARSEEXCEPTION_H_OF_AXIS_INCLUDED_
  #define __AXISPARSEEXCEPTION_H_OF_AXIS_INCLUDED_
  
  #include <string>
  #include <exception>
  #include <axis/server/AxisException.h>
  using namespace std;
  
  class AxisParseException :public AxisException
  {
  
  public:
      AxisParseException();
      AxisParseException(int iExceptionCode);
      AxisParseException(exception* e);
      AxisParseException(exception* e, int iExceptionCode);
      virtual ~AxisParseException() throw();
      const char* what() throw();
      const int getExceptionCode();
      const string getMessage(exception* e);
      const string getMessage(int iExceptionCode);
                                                                                                                               
  private:
      void processException(exception* e);
      void processException(exception* e, int iExceptionCode);
      void processException(int iExceptionCode);
      string m_sMessage;
      int m_iExceptionCode;
  };
  
  #endif
  
  
  
  
  1.1                  ws-axis/c/include/axis/AxisEngineException.h
  
  Index: AxisEngineException.h
  ===================================================================
  /*
   *   Copyright 2003-2004 The Apache Software Foundation.
   *
   *   Licensed under the Apache License, Version 2.0 (the "License");
   *   you may not use this file except in compliance with the License.
   *   You may obtain a copy of the License at
   *
   *       http://www.apache.org/licenses/LICENSE-2.0
   *
   *   Unless required by applicable law or agreed to in writing, software
   *   distributed under the License is distributed on an "AS IS" BASIS,
   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *   See the License for the specific language governing permissions and
   *   limitations under the License.
   *
   *
   *   @author Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
   *
   */
   
  #ifndef __AXISENGINEEXCEPTION_H_OF_AXIS_INCLUDED_
  #define __AXISENGINEEXCEPTION_H_OF_AXIS_INCLUDED_
  
  #include <string>
  #include <exception>
  #include <axis/server/AxisException.h>
  using namespace std;
  
  class AxisEngineException :public AxisException
  {
  
  public:
      AxisEngineException();
      AxisEngineException(int iExceptionCode);
      AxisEngineException(exception* e);
      AxisEngineException(exception* e, int iExceptionCode);
      virtual ~AxisEngineException() throw();
      const char* what() throw();
      const int getExceptionCode();
      const string getMessage(exception* e);
      const string getMessage(int iExceptionCode);
                                                                                                                               
  private:
      void processException(exception* e);
      void processException(exception* e, int iExceptionCode);
      void processException(int e);
      string m_sMessage;
      int m_iExceptionCode;
  };
  
  #endif
  
  
  
  
  1.1                  ws-axis/c/include/axis/AxisWsddException.h
  
  Index: AxisWsddException.h
  ===================================================================
  /*
   *   Copyright 2003-2004 The Apache Software Foundation.
   *
   *   Licensed under the Apache License, Version 2.0 (the "License");
   *   you may not use this file except in compliance with the License.
   *   You may obtain a copy of the License at
   *
   *       http://www.apache.org/licenses/LICENSE-2.0
   *
   *   Unless required by applicable law or agreed to in writing, software
   *   distributed under the License is distributed on an "AS IS" BASIS,
   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *   See the License for the specific language governing permissions and
   *   limitations under the License.
   *
   *
   *   @author Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
   *
   */
   
  #ifndef __AXISWSDDEXCEPTION_H_OF_AXIS_INCLUDED_
  #define __AXISWSDDEXCEPTION_H_OF_AXIS_INCLUDED_
  
  #include <string>
  #include <exception>
  #include <axis/server/AxisException.h>
  using namespace std;
  
  class AxisWsddException :public AxisException
  {
  
  public:
      AxisWsddException();
      AxisWsddException(int iExceptionCode);
      AxisWsddException(exception* e);
      AxisWsddException(exception* e, int iExceptionCode);
      virtual ~AxisWsddException() throw();
      const char* what() throw();
      const int getExceptionCode();
      const string getMessage(exception* e);
      const string getMessage(int iExceptionCode);
                                                                                                                               
  private:
      void processException(exception* e);
      void processException(exception* e, int iExceptionCode);
      void processException(int iExceptionCode);
      string m_sMessage;
      int m_iExceptionCode;
  };
  
  #endif
  
  
  
  
  1.1                  ws-axis/c/include/axis/AxisSoapException.h
  
  Index: AxisSoapException.h
  ===================================================================
  /*
   *   Copyright 2003-2004 The Apache Software Foundation.
   *
   *   Licensed under the Apache License, Version 2.0 (the "License");
   *   you may not use this file except in compliance with the License.
   *   You may obtain a copy of the License at
   *
   *       http://www.apache.org/licenses/LICENSE-2.0
   *
   *   Unless required by applicable law or agreed to in writing, software
   *   distributed under the License is distributed on an "AS IS" BASIS,
   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *   See the License for the specific language governing permissions and
   *   limitations under the License.
   *
   *
   *   @author Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
   *
   */
   
  #ifndef __AXISSOAPEXCEPTION_H_OF_AXIS_INCLUDED_
  #define __AXISSOAPEXCEPTION_H_OF_AXIS_INCLUDED_
  
  #include <string>
  #include <exception>
  #include <axis/server/AxisException.h>
  using namespace std;
  
  class AxisSoapException :public AxisException
  {
  
  public:
      AxisSoapException();
      AxisSoapException(int iExceptionCode);
      AxisSoapException(exception* e);
      AxisSoapException(exception* e, int iExceptionCode);
      virtual ~AxisSoapException() throw();
      const char* what() throw();
      const int getExceptionCode();
      const string getMessage(exception* e);
      const string getMessage(int iExceptionCode);
                                                                                                                               
  private:
      void processException(exception* e);
      void processException(exception* e, int iExceptionCode);
      void processException(int iExceptionCode);
      string m_sMessage;
      int m_iExceptionCode;
  };
  
  #endif
  
  
  
  
  1.1                  ws-axis/c/include/axis/AxisTransportException.h
  
  Index: AxisTransportException.h
  ===================================================================
  /*
   *   Copyright 2003-2004 The Apache Software Foundation.
   *
   *   Licensed under the Apache License, Version 2.0 (the "License");
   *   you may not use this file except in compliance with the License.
   *   You may obtain a copy of the License at
   *
   *       http://www.apache.org/licenses/LICENSE-2.0
   *
   *   Unless required by applicable law or agreed to in writing, software
   *   distributed under the License is distributed on an "AS IS" BASIS,
   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *   See the License for the specific language governing permissions and
   *   limitations under the License.
   *
   *
   *   @author Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
   *
   */
   
  #ifndef __AXISTRANSPORTEXCEPTION_H_OF_AXIS_INCLUDED_
  #define __AXISTRANSPORTEXCEPTION_H_OF_AXIS_INCLUDED_
  
  #include <string>
  #include <exception>
  #include <axis/server/AxisException.h>
  using namespace std;
  
  class AxisTransportException :public AxisException
  {
  
  public:
      AxisTransportException();
      AxisTransportException(int iExceptionCode);
      AxisTransportException(exception* e);
      AxisTransportException(exception* e, int iExceptionCode);
      virtual ~AxisTransportException() throw();
      const char* what() throw();
      const int getExceptionCode();
      const string getMessage(exception* e);
      const string getMessage(int iExceptionCode);
                                                                                                                               
  private:
      void processException(exception* e);
      void processException(exception* e, int iExceptionCode);
      void processException(int iExceptionCode);
      string m_sMessage;
      int m_iExceptionCode;
  };
  
  #endif